@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html {
  height: 100%;
  scroll-padding-top: 6.25rem;
}
@media screen and (min-width: 1201px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
    font-size: 2.086vw;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 16px;
    font-size: 3.865vw;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

b, strong, .fw-bold {
  font-weight: 700;
}

em {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p, ul, ol, table, dl {
    line-height: 1.8;
  }
}

a {
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  color: #000;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.pc-none,
.for-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .for-mobile {
    display: block;
  }
}
/*------------------------
  header
------------------------*/
.l-header {
  width: 100%;
  max-width: 75rem;
  height: 4.375rem;
  background-color: #FFF;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.875rem;
  position: fixed;
  z-index: 999;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .l-header {
    width: calc(100% - 2.5rem);
    height: 3.75rem;
    top: 0.625rem;
    padding: 0 1.25rem;
  }
}
.l-header .l-header-logo {
  margin-right: auto;
}
.l-header .l-header-logo a {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .l-header .l-header-logo a {
    font-size: 0.6875rem;
  }
}
.l-header .l-header-logo a img {
  margin-top: 0.3125rem;
  width: 8.75rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-header .l-header-logo a img {
    width: 7.5rem;
  }
}
.l-header .l-header-menu-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-header .l-header-logo,
.l-header .menu-shopping,
.l-header .menu-btn {
  position: relative;
  z-index: 999;
}

/*------------------------
  global nav
------------------------*/
.l-header .l-header-menu__list {
  display: flex;
  align-items: center;
}
.l-header ul.menu {
  display: flex;
  width: 100%;
  margin-right: 2.8125rem;
}
.l-header ul.menu li {
  padding: 0 0.9375rem;
}
.l-header ul.menu li a {
  color: #000;
  font-weight: 500;
  font-size: 0.75rem;
  display: block;
  position: relative;
  white-space: nowrap;
}
.l-header ul.menu li a:hover {
  color: #0486C2;
}
.l-header ul.menu li a:hover::before {
  opacity: 1;
  bottom: 0.3125rem;
}
.l-header .menu-shopping {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-header .menu-shopping {
    gap: 1.25rem;
    margin-right: 1.25rem;
  }
}
.l-header .menu-shopping a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header .menu-shopping_cart svg {
  width: 1.25rem;
  height: auto;
}
.l-header .menu-shopping_user a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------
  burger
------------------------*/
.menu-btn {
  display: flex;
  height: 2.5rem;
  width: 1.875rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.menu-btn span {
  position: relative;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  width: 100%;
  display: block;
  height: 0.1875rem;
  border-radius: 0.09375rem;
  background-color: #000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
}
.menu-btn span::before {
  top: -0.625rem;
  width: 70%;
}
.menu-btn span::after {
  bottom: -0.625rem;
  width: 50%;
}

#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: transparent;
}
#menu-btn-check:checked ~ .menu-btn span::before, #menu-btn-check:checked ~ .menu-btn span::after {
  transform-origin: center;
  width: 50%;
  left: 25%;
}
#menu-btn-check:checked ~ .menu-btn span::before {
  top: 0;
  transform: rotate(35deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  bottom: 0;
  transform: rotate(-35deg);
}
#menu-btn-check:checked ~ .menu-content {
  left: -1.25rem; /*メニューを画面内へ*/
}

.menu-content {
  width: calc(100% + 2.5rem);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  z-index: 80;
  top: -0.625rem;
  left: calc(100% + 2.5rem); /*leftの値を変更してメニューを画面外へ*/
  transition: all 0.5s;
  background: #FFF;
  padding: 6.25rem 1.875rem 2.5rem;
}
.menu-content .burger-logo {
  margin: 0 auto 2.5rem;
  width: 9.375rem;
}
.menu-content .burger-logo a {
  display: block;
}
.menu-content .menu-wrap {
  border-top: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.875rem;
}
.menu-content ul.menu {
  max-width: 25rem;
  margin: 0 1.875rem 1.875rem;
  text-align: left;
  position: relative;
  z-index: 10;
  display: block;
}
.menu-content ul.menu li a {
  display: block;
  padding: 1.25rem 0;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 500;
}
.menu-content ul.menu#menu-burger-menu li a {
  font-size: 0.9375rem;
  color: #8E8E8E;
  padding: 0.3125rem 0;
}

/*------------------------
  layout
------------------------*/
.grid-container {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  min-height: 100vh;
}

.ly-container {
  padding: 3.75rem 0 5.625rem;
}
.ly-container.top {
  padding-top: 0;
}
.ly-container.bottom {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ly-container {
    padding: 2.5rem 0 3.125rem;
  }
}

.ly-wrapper {
  margin: 0 auto;
  max-width: calc(1200px + 6.25rem);
  width: 100%;
  padding: 0 3.125rem;
}
.ly-wrapper.sm {
  max-width: calc(1000px + 6.25rem);
}
@media screen and (max-width: 768px) {
  .ly-wrapper {
    padding: 0 1.25rem;
  }
}

.ly-white-block {
  background-color: #FFF;
  position: relative;
  margin: 5rem 0;
}
.ly-white-block::before, .ly-white-block::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #FFF;
}
.ly-white-block::before {
  top: -5rem;
  border-radius: 5rem 5rem 0 0;
}
.ly-white-block::after {
  bottom: -5rem;
  border-radius: 0 0 5rem 5rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .ly-white-block {
    margin: 2.5rem 0;
  }
  .ly-white-block::before, .ly-white-block::after {
    height: 2.5rem;
  }
  .ly-white-block::before {
    top: -2.5rem;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .ly-white-block::after {
    bottom: -2.5rem;
    border-radius: 0 0 2.5rem 2.5rem;
  }
}

.ly-row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .ly-row {
    flex-wrap: wrap;
  }
}

.ly-grid {
  display: grid;
}

.col2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .col2 {
    width: 100%;
  }
}

.col3 {
  width: 33.333%;
}
@media screen and (max-width: 768px) {
  .col3 {
    width: 100%;
  }
}

.col4 {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .col4 {
    width: 50%;
  }
}

.col-left {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .col-left {
    width: 100%;
  }
}

.col-right {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .col-right {
    width: 100%;
  }
}

/*------------------------
  partial
------------------------*/
.bg-logomark {
  position: relative;
}
.bg-logomark::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 5rem 5rem 0 0;
  overflow: hidden;
  background: url(../images/common/bg-logo.svg) no-repeat right top/63.28% auto;
  top: -5rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bg-logomark::before {
    border-radius: 2.5rem 2.5rem 0 0;
    background: url(../images/common/bg-logo.svg) no-repeat right top/68% auto;
    top: -2.5rem;
  }
}

/*------------------------
  utilities
------------------------*/
.is-relative {
  position: relative;
}

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

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

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

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

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

.mt-10 {
  margin-top: 0.625rem !important;
}

.en {
  font-family: "Roboto", sans-serif;
}

.c-blue {
  color: #0486C2;
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.4;
}

.sec-ttl {
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
}
.sec-ttl.en {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
  }
  .sec-ttl .en {
    font-size: 0.75rem;
  }
}

.heading-large {
  text-align: center;
  margin-bottom: 3.75rem;
  display: grid;
  grid-template-rows: 2;
}
.heading-large span {
  line-height: 1;
}
.heading-large .en {
  font-size: 6.25rem;
  letter-spacing: 0.2em;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}
.heading-large .ja {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-top: -0.9em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .heading-large {
    margin-bottom: 3.125rem;
  }
  .heading-large .en {
    font-size: 3.75rem;
  }
  .heading-large .ja {
    font-size: 1.875rem;
    margin-top: -0.8em;
  }
}

.heading-medium {
  font-size: 1.375rem;
}

/*------------------------
  cta
------------------------*/
@media screen and (max-width: 768px) {
  .cta {
    margin-top: 2.5rem;
  }
}
.cta.common {
  margin-top: 6.875rem;
}
.cta-inner {
  background-color: #FAF7F2;
  border-radius: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  padding: 2.1875rem 3.4375rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
    padding: 2.1875rem 1.25rem 1.25rem;
  }
}
.cta-lead {
  font-weight: 700;
  line-height: 1.875rem;
  margin-bottom: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-lead {
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
}
.cta-left .cta-lead {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta-left .cta-lead {
    font-size: 1.125rem;
  }
}
.cta-right .cta-lead {
  font-size: 0.9375rem;
  color: #00B900;
}
.cta-line-btn a {
  display: block;
  background-color: #FFF;
  border-radius: 0.625rem;
  line-height: 4.0625rem;
  color: #00B900;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-line-btn a {
    color: #FFF;
    background-color: #00B900;
    font-size: 1.125rem;
  }
}
.cta-line-btn a:hover {
  color: #FFF;
  background-color: #00B900;
}
.cta-circle {
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #FF6243;
  left: -1.5rem;
  top: -0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-circle {
    left: -0.75rem;
    top: -1.875rem;
  }
}

/*------------------------
  page title
------------------------*/
.page-title-wrap {
  padding: 7.5rem 1.875rem 5.625rem;
}
.page-title-wrap .page-title {
  text-align: center;
  position: relative;
}
.page-title-wrap .page-title span {
  display: block;
  letter-spacing: 0.1em;
}
.page-title-wrap .page-title .ja {
  font-size: 2.625rem;
}
.page-title-wrap .page-title .en {
  font-size: 1.25rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .page-title-wrap {
    padding: 5rem 1.875rem 3.125rem;
  }
  .page-title-wrap .page-title .ja {
    font-size: 1.875rem;
  }
  .page-title-wrap .page-title .en {
    font-size: 0.875rem;
  }
}

/*------------------------
  link button
------------------------*/
.link-btn a {
  background-color: #0486C2;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 1.25rem;
  color: #FFF;
}
.link-btn a:hover {
  background-color: #0071BD;
}

/*------------------------
  news
------------------------*/
.news-list {
  border-top: 1px solid #D9D9D9;
}
.news-item {
  border-bottom: 1px solid #D9D9D9;
}
.news-item a {
  padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: 0.5fr 4fr;
  line-height: 1.8;
  font-size: 0.9375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-item a {
    padding: 1.25rem 2.5rem 1.25rem 0;
    grid-template-columns: 1fr;
  }
}
.news-item a::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 0.5rem;
  height: 0.5rem;
  border: solid #8E8E8E;
  border-width: 2px 2px 0 0;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
  top: calc(50% - 0.125rem);
  right: 1.25rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-item a::before {
    right: 0;
  }
}
.news-item a:hover::before {
  border-color: #0486C2;
  right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .news-item a:hover::before {
    right: 0;
  }
}
.news-item a:hover .news-ttl {
  color: #0486C2;
}
.news-item time {
  font-size: 0.8125rem;
  color: #8E8E8E;
  display: block;
  margin-top: 0.2em;
}
.news-ttl {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

/*------------------------
  footer
------------------------*/
.l-footer {
  width: 100%;
  padding: 6.25rem 0;
  background-color: #0486C2;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3.125rem 0 1.5625rem;
  }
}
.l-footer .ly-row {
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l-footer .ly-row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.l-footer-logo {
  font-size: 1.875rem;
  font-weight: 500;
  margin-right: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .l-footer-logo {
    font-size: 1rem;
    margin: 0 0 1.25rem;
  }
}
.l-footer-logo img {
  width: 25rem;
  margin-top: 0.625rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-footer-logo img {
    width: 15rem;
  }
}
.l-footer-menu {
  border-top: 1px solid #FFF;
  position: relative;
  margin: 1.5625rem 0;
  padding: 0.9375rem 0;
}
.l-footer-menu::before, .l-footer-menu::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #FFF;
  top: -0.1875rem;
}
.l-footer-menu::before {
  left: 0;
}
.l-footer-menu::after {
  right: 0;
}
.l-footer-menu ul.menu {
  display: flex;
  gap: 2.1875rem;
}
.l-footer-menu ul.menu li a {
  font-size: 0.8125rem;
  color: #FFF;
}
.l-footer-sns {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .l-footer-sns {
    gap: 0.75rem;
  }
}
.l-footer-sns img {
  width: 4.375rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .l-footer-sns img {
    width: 2.8125rem;
  }
}
.l-footer-sns a:hover img {
  transform: scale(0.9);
}
.l-footer .l-footer-copyright {
  font-size: 0.6875rem;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-copyright {
    text-align: center;
    margin-top: 2.5rem;
  }
}

/*------------------------
  scroll to top
------------------------*/
.page-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.page-top:hover {
  opacity: 0.9;
}
.page-top img {
  width: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page-top {
    bottom: 1.5625rem;
    right: 0.9375rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/*------------------------
  404
------------------------*/
.error {
  padding-top: 8.75rem;
}
.error .sect-ttl {
  margin-bottom: 1.875rem;
}
.error .sect-ttl + p {
  font-size: 0.875rem;
}
.error .link-btn {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}