@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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
button, input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 100%;
}
select::-ms-expand {
  display: none;
}
img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
li {
  list-style: none
}
table {
  table-layout: fixed;
  border-collapse: collapse;
}
th {
  font-weight: inherit;
  text-align: left;
}
sup, sub {
  font-size: 100%;
  vertical-align: baseline;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    /* 1rem = 10px(vw基準) */
    font-size: calc(100vw * 10 / 375);
  }
}
body {
  color: #2C2C2C;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: 'Noto Sans JP', Helvetica, Arial, Meiryo, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', system-ui, sans-serif;
}

a {
  color: #EA5412;
  text-decoration: none;
}

/* CONTENTS AREA
----------------------------------------*/

.contents-area {
  background-image: linear-gradient(90deg, #f5fefe, #fff2ec);
}
.contents-head-shoulder {
  font-family: 'Akshar', sans-serif;
  line-height: 1.1;
}
.contents-head-lv1 {
  font-size: 2rem;
  font-weight: bold;
}
.contents-body {
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .contents-area {
    padding: 16rem 0 0;
  }
  .contents-head {
    margin-bottom: 6.4rem;
    padding: 0 1.6rem;
  }
  .contents-head-shoulder {
    font-size: 5.6rem;
  }
  .contents-body {
    padding: 8rem 4.0rem 12rem;
    border-radius: 0 3.2rem 3.2rem 0;
  }
}
@media screen and (min-width: 768px) {
  .contents-area {
    padding: 20rem 0 0;
  }
  .contents-head {
    max-width: 136rem;
    margin: 0 auto 8rem;
    padding: 0 4.0rem;
  }
  .contents-head-shoulder {
    font-size: 6.4rem;
  }
  .contents-body {
    position: relative;
    max-width: 141.6rem;
    margin: 0 auto;
    padding: 6.4rem 3.2rem 8rem;
    border-radius: 0 6.4rem 6.4rem 0;
  }
}
@media screen and (min-width: 1360px) {
  .contents-body::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: #ffffff;
  }
}


/* HEADER
----------------------------------------*/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 1.6rem 0 4rem;
  max-width: 143.2rem;
  width: calc(100% - 8rem);
  min-height: 8rem;
  background: rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
  border-image: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0)) 1;
  border-radius: 99px;
  box-sizing: border-box;
  position: fixed;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* メニュー開閉の背景スクロール抑制
   height/overflow でのロックは iOS で scrollY が 0 に戻るため使わない。
   実ロックは JS の touchmove/wheel preventDefault。 */
html.is-scroll-locked,
html.is-scroll-locked body {
  overscroll-behavior: none;
}
html.is-scroll-locked body {
  touch-action: none;
}
html.is-scroll-locked .js-header-nav {
  touch-action: pan-y;
}

body.is-nav-open .contents-area,
body.is-nav-open .top-contents-area,
body.is-nav-open .footer {
  filter: blur(2px);
  transition: filter 0.3s ease;
}

.header-logo_link {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #2C2C2C;
}

.header-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 4rem;
}

.header-nav-list_item-link {
  padding-bottom: .2em;
  font-weight: 600;
  font-size: 1.8rem;
  color: #2c2c2c;
  background-image: linear-gradient(90deg, currentcolor, currentcolor);
	background-repeat: no-repeat;
	background-position: 100% 100%;
	background-size: 0% 0.06em;
	transition: background-size 0.36s ease-out;
}
.header-nav-list_item-link:hover {
  background-position: 0% 100%;
	background-size: 100% 0.06em;
	transition-duration: 0.24s;
}
.header-nav-list_item-link.header-nav-list_item-link--contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, #EA5412 0%, #F39800 50%, #EA5412 100%);
  background-size: 200% 100%;
  background-position: left center;
  border-radius: 3.2rem;
  transition: background-position 0.5s ease;
}

.header-nav-list_item-link.header-nav-list_item-link--contact:hover {
  text-decoration: none;
  background-position: right center;
  opacity: 1;
}
.header-nav-menu {
  display: none;
}

@media screen and (min-width: 768px) {
  .header-nav-list_item-link.header-nav-list_item-link--contact {
    padding: 1rem 3.2rem 1.3rem;
    min-width: 17.2rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 3.2rem 0 2.4rem;
    width: 35.9rem;
    min-height: 6.4rem;
  }
  .header-logo_link {
    font-size: 2.6rem;
  }
  .header-nav {
    padding: 4rem 2rem 2rem;
    width: 21.2rem;
    position: fixed;
    top: 7rem;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3.2rem;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
  }
  .header-nav.is-open {
    max-height: auto;
    visibility: visible;
    opacity: 1;
  }
  .header-nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .4rem;
    width: 4rem;
    height: 1.6rem;
    position: relative;
  }
  .header-nav-menu_icon {
    width: 100%;
    height: .2rem;
    background: #5c5c5c;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header-nav-menu.is-open .header-nav-menu_icon:nth-child(1) {
    transform: translateY(.6rem) rotate(15deg);
  }
  .header-nav-menu.is-open .header-nav-menu_icon:nth-child(2) {
    opacity: 0;
  }
  .header-nav-menu.is-open .header-nav-menu_icon:nth-child(3) {
    transform: translateY(-.6rem) rotate(-15deg);
  }
  .header-nav-list {
    flex-direction: column;
    gap: 3.2rem;
  }
  .header-nav-list_item-link:not(.header-nav-list_item-link--contact) {
    font-size: 1.6rem;
    color: #000;
  }
  .header-nav-list_item-link.header-nav-list_item-link--contact {
    padding-bottom: .4rem;
    width: 17.2rem;
    min-height: 5rem;
    font-size: 1.8rem;
    border-radius: 3.2rem;
  }
}


/* BREADCRUMBS
----------------------------------------*/
.breadcrumbs_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 0 1.4rem;
}
.breadcrumbs_link {
  color: #5C5C5C;
  font-size: 1.4rem;
}
.breadcrumbs_link::after {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 1.4rem;
  background: url(/assets/img/common/shared/icon-breadcrumbs.svg) no-repeat center center;
  background-size: cover;
  content: "";
  display: inline-block;
}
.breadcrumbs_current {
  color: #2C2C2C;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 14.4rem;
    padding: .5rem 2rem;
    display: flex;
    flex-flow: nowrap;
  }
  .breadcrumbs_list {
    overflow: scroll;
    flex-shrink: 1;
    white-space: nowrap;
    gap: 0 1rem;
  }
  .breadcrumbs_item {
    display: inline-block;
  }
  .breadcrumbs_current {
    width: auto;
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin-top: 16rem;
    padding: .7rem 4rem .9rem;
  }
  .breadcrumbs_link {
    -webkit-transition: .3s all;
    background-image: linear-gradient(90deg, #5C5C5C, #5C5C5C);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: background-size 0.36s ease-out;
  }
  .breadcrumbs_link:hover {
    background-size: calc(100% - 2.6rem) 1px;
  }
}


/* FOOTER
----------------------------------------*/

.footer {
  padding: 3.6rem 0 2.4rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 4rem;
}
.footer-nav-list {
  display: flex;
  justify-content: center;
  gap: 0 1.6rem;
}
.footer-nav-list_item-link {
  font-size: 1.4rem;
  color: #333333;
}
.footer-copyright {
  grid-area: copyright;
  margin-top: 2rem;
  text-align: right;
}
.footer-copyright_text {
  font-size: 1.2rem;
  color: #5C5C5C;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    max-width: 139.2rem;
  }
  .footer-nav-list_item-link {
    -webkit-transition: .3s all;
    background-image: linear-gradient(90deg, #333333, #333333);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: background-size 0.36s ease-out;
  }
  .footer-nav-list_item-link:hover {
    opacity: 0.7;
    background-size: 100% 1px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 3.4rem 0 2.4rem;
  }
  .footer-inner {
    flex-direction: column;
    padding: 0 1.6rem;
  }
  .footer-nav {
    margin-right: auto;
  }
  .footer-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-copyright {
    margin-top: 1.8rem;
    text-align: left;
  }
  .footer-copyright_text {
    font-size: 1.2rem;
  }
}

/* PAGE TOP
----------------------------------------*/
.page-top {
  position: fixed;
  bottom: 3.2rem;
  right: 3.2rem;
  width: 5.6rem;
  height: 5.6rem;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s ease 0.5s, opacity 0.5s ease 0.5s, bottom 0.5s ease 0.5s;
}

.page-top.is-active {
  visibility: visible;
  opacity: 1;
}

.page-top_link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(44, 44, 44, .8);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: relative;
  transition: opacity .3s ease;
}
.page-top_link:hover {
  opacity: 0.6;
}
.page-top_link::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-top: 2px solid rgba(217, 217, 217, 1);
  border-left: 2px solid rgba(217, 217, 217, 1);
  position: relative;
  top: .4rem;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .page-top {
    bottom: 4.8em;
    right: 1.6rem;
  }
}

/* UTILITIES
----------------------------------------*/
.u-ta-left {
  text-align: left !important;
}
.u-ta-center {
  text-align: center !important;
}
.u-ta-right {
  text-align: right !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-10 {
  margin-top: 1rem !important;
}
.u-mt-20 {
  margin-top: 2rem !important;
}
.u-mt-30 {
  margin-top: 3rem !important;
}
.u-mt-40 {
  margin-top: 4rem !important;
}
.u-mt-50 {
  margin-top: 5rem !important;
}
.u-mt-60 {
  margin-top: 6rem !important;
}
.u-mt-70 {
  margin-top: 7rem !important;
}
.u-mt-80 {
  margin-top: 8rem !important;
}
.u-mt-90 {
  margin-top: 9rem !important;
}
.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-10 {
  margin-bottom: 1rem !important;
}
.u-mb-20 {
  margin-bottom: 2rem !important;
}
.u-mb-30 {
  margin-bottom: 3rem !important;
}
.u-mb-40 {
  margin-bottom: 4rem !important;
}
.u-mb-50 {
  margin-bottom: 5rem !important;
}
.u-mb-60 {
  margin-bottom: 6rem !important;
}
.u-mb-70 {
  margin-bottom: 7rem !important;
}
.u-mb-80 {
  margin-bottom: 8rem !important;
}
.u-mb-90 {
  margin-bottom: 9rem !important;
}
.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-10 {
  margin-left: 1rem !important;
}
.u-ml-20 {
  margin-left: 2rem !important;
}
.u-ml-30 {
  margin-left: 3rem !important;
}
.u-ml-40 {
  margin-left: 4rem !important;
}
.u-ml-50 {
  margin-left: 5rem !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-10 {
  margin-right: 1rem !important;
}
.u-mr-20 {
  margin-right: 2rem !important;
}
.u-mr-30 {
  margin-right: 3rem !important;
}
.u-mr-40 {
  margin-right: 4rem !important;
}
.u-mr-50 {
  margin-right: 5rem !important;
}

.u-w-20p {
  width: 20% !important;
}
.u-w-25p {
  width: 25% !important;
}
.u-w-30p {
  width: 30% !important;
}
.u-w-35p {
  width: 35% !important;
}
.u-w-40p {
  width: 40% !important;
}
.u-w-45p {
  width: 45% !important;
}
.u-w-50p {
  width: 50% !important;
}
.u-w-55p {
  width: 55% !important;
}
.u-w-60p {
  width: 60% !important;
}
.u-w-65p {
  width: 65% !important;
}
.u-w-70p {
  width: 70% !important;
}
.u-w-75p {
  width: 75% !important;
}
.u-w-80p {
  width: 80% !important;
}
.u-w-85p {
  width: 85% !important;
}

.u-max-w-none {
  max-width: none !important;
}

@media screen and (max-width: 768px) {
  .u-sp-d-n {
    display: none !important;
  }
  .u-sp-ta-left {
    text-align: left !important;
  }
  .u-sp-ta-center {
    text-align: center !important;
  }
  .u-sp-ta-right {
    text-align: right !important;
  }
  .u-sp-mt-0 {
    margin-top: 0 !important;
  }
  .u-sp-mt-10 {
    margin-top: 1rem !important;
  }
  .u-sp-mt-20 {
    margin-top: 2rem !important;
  }
  .u-sp-mt-30 {
    margin-top: 3rem !important;
  }
  .u-sp-mt-40 {
    margin-top: 4rem !important;
  }
  .u-sp-mt-50 {
    margin-top: 5rem !important;
  }
  .u-sp-mt-60 {
    margin-top: 6rem !important;
  }
  .u-sp-mt-70 {
    margin-top: 7rem !important;
  }
  .u-sp-mt-80 {
    margin-top: 8rem !important;
  }
  .u-sp-mt-90 {
    margin-top: 9rem !important;
  }
  .u-sp-mt-100 {
    margin-top: 10rem !important;
  }
  
  .u-sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-sp-mb-10 {
    margin-bottom: 1rem !important;
  }
  .u-sp-mb-20 {
    margin-bottom: 2rem !important;
  }
  .u-sp-mb-30 {
    margin-bottom: 3rem !important;
  }
  .u-sp-mb-40 {
    margin-bottom: 4rem !important;
  }
  .u-sp-mb-50 {
    margin-bottom: 5rem !important;
  }
  .u-sp-mb-60 {
    margin-bottom: 6rem !important;
  }
  .u-sp-mb-70 {
    margin-bottom: 7rem !important;
  }
  .u-sp-mb-80 {
    margin-bottom: 8rem !important;
  }
  .u-sp-mb-90 {
    margin-bottom: 9rem !important;
  }
  .u-sp-mb-100 {
    margin-bottom: 10rem !important;
  }
  
  .u-sp-ml-0 {
    margin-left: 0 !important;
  }
  .u-sp-ml-10 {
    margin-left: 1rem !important;
  }
  .u-sp-ml-20 {
    margin-left: 2rem !important;
  }
  .u-sp-ml-30 {
    margin-left: 3rem !important;
  }
  .u-sp-ml-40 {
    margin-left: 4rem !important;
  }
  .u-sp-ml-50 {
    margin-left: 5rem !important;
  }
  
  .u-sp-mr-0 {
    margin-right: 0 !important;
  }
  .u-sp-mr-10 {
    margin-right: 1rem !important;
  }
  .u-sp-mr-20 {
    margin-right: 2rem !important;
  }
  .u-sp-mr-30 {
    margin-right: 3rem !important;
  }
  .u-sp-mr-40 {
    margin-right: 4rem !important;
  }
  .u-sp-mr-50 {
    margin-right: 5rem !important;
  }

  .u-sp-w-20p {
    width: 20% !important;
  }
  .u-sp-w-25p {
    width: 25% !important;
  }
  .u-sp-w-30p {
    width: 30% !important;
  }
  .u-sp-w-35p {
    width: 35% !important;
  }
  .u-sp-w-40p {
    width: 40% !important;
  }
  .u-sp-w-45p {
    width: 45% !important;
  }
  .u-sp-w-50p {
    width: 50% !important;
  }
  .u-sp-w-55p {
    width: 55% !important;
  }
  .u-sp-w-60p {
    width: 60% !important;
  }
  .u-sp-w-65p {
    width: 65% !important;
  }
  .u-sp-w-70p {
    width: 70% !important;
  }
  .u-sp-w-75p {
    width: 75% !important;
  }
  .u-sp-w-80p {
    width: 80% !important;
  }
  .u-sp-w-85p {
    width: 85% !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pc-d-n {
    display: none !important;
  }
  .u-pc-ta-left {
    text-align: left !important;
  }
  .u-pc-ta-center {
    text-align: center !important;
  }
  .u-pc-ta-right {
    text-align: right !important;
  }
  .u-pc-mt-0 {
    margin-top: 0 !important;
  }
  .u-pc-mt-10 {
    margin-top: 1rem !important;
  }
  .u-pc-mt-20 {
    margin-top: 2rem !important;
  }
  .u-pc-mt-30 {
    margin-top: 3rem !important;
  }
  .u-pc-mt-40 {
    margin-top: 4rem !important;
  }
  .u-pc-mt-50 {
    margin-top: 5rem !important;
  }
  .u-pc-mt-60 {
    margin-top: 6rem !important;
  }
  .u-pc-mt-70 {
    margin-top: 7rem !important;
  }
  .u-pc-mt-80 {
    margin-top: 8rem !important;
  }
  .u-pc-mt-90 {
    margin-top: 9rem !important;
  }
  .u-pc-mt-100 {
    margin-top: 10rem !important;
  }
  .u-pc-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-pc-mb-10 {
    margin-bottom: 1rem !important;
  }
  .u-pc-mb-20 {
    margin-bottom: 2rem !important;
  }
  .u-pc-mb-30 {
    margin-bottom: 3rem !important;
  }
  .u-pc-mb-40 {
    margin-bottom: 4rem !important;
  }
  .u-pc-mb-50 {
    margin-bottom: 5rem !important;
  }
  .u-pc-mb-60 {
    margin-bottom: 6rem !important;
  }
  .u-pc-mb-70 {
    margin-bottom: 7rem !important;
  }
  .u-pc-mb-80 {
    margin-bottom: 8rem !important;
  }
  .u-pc-mb-90 {
    margin-bottom: 9rem !important;
  }
  .u-pc-mb-100 {
    margin-bottom: 10rem !important;
  }
  .u-pc-ml-0 {
    margin-left: 0 !important;
  }
  .u-pc-ml-10 {
    margin-left: 1rem !important;
  }
  .u-pc-ml-20 {
    margin-left: 2rem !important;
  }
  .u-pc-ml-30 {
    margin-left: 3rem !important;
  }
  .u-pc-ml-40 {
    margin-left: 4rem !important;
  }
  .u-pc-ml-50 {
    margin-left: 5rem !important;
  }
  .u-pc-mr-0 {
    margin-right: 0 !important;
  }
  .u-pc-mr-10 {
    margin-right: 1rem !important;
  }
  .u-pc-mr-20 {
    margin-right: 2rem !important;
  }
  .u-pc-mr-30 {
    margin-right: 3rem !important;
  }
  .u-pc-mr-40 {
    margin-right: 4rem !important;
  }
  .u-pc-mr-50 {
    margin-right: 5rem !important;
  }

  .u-pc-w-20p {
    width: 20% !important;
  }
  .u-pc-w-25p {
    width: 25% !important;
  }
  .u-pc-w-30p {
    width: 30% !important;
  }
  .u-pc-w-35p {
    width: 35% !important;
  }
  .u-pc-w-40p {
    width: 40% !important;
  }
  .u-pc-w-45p {
    width: 45% !important;
  }
  .u-pc-w-50p {
    width: 50% !important;
  }
  .u-pc-w-55p {
    width: 55% !important;
  }
  .u-pc-w-60p {
    width: 60% !important;
  }
  .u-pc-w-65p {
    width: 65% !important;
  }
  .u-pc-w-70p {
    width: 70% !important;
  }
  .u-pc-w-75p {
    width: 75% !important;
  }
  .u-pc-w-80p {
    width: 80% !important;
  }
  .u-pc-w-85p {
    width: 85% !important;
  }
}