@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #6F6F6F;
  --color-white: #fff;
  --color-primary: #F29600;
  --color-bg: #FFF7E7;

  --zen-maru: "Zen Maru Gothic", serif;


  --header: 15rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 10rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {

  font-size: clamp(7px, 0.661375661vw, 10px);

  box-sizing: border-box;

  background: var(--color-bg);
}

body {
  font-size: 1.6rem;
  font-family: var(--zen-maru);
  color: var(--color-black);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body * {
  letter-spacing: .05em;
}

main {
  overflow: hidden;
}

.wrap {
  margin: 0 auto;
  width: 106rem;
}


a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .4;
}


img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */
h2.hd {
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.hd_en {
  width: auto;
  height: 5rem;
}

.hd_en img {
  width: auto;
  max-width: unset;
  height: 100%;
}

@media screen and (max-width:767px) {
  html {
    /* basefont-size 10px 390px */
    font-size: 2.5641025vw;
  }

  .wrap {
    margin: 0 auto;
    width: 36rem;
  }

  h2.hd {
    font-size: 2.4rem;
  }

  .hd_en {
    height: 4rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header#mainnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .2s;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--color-primary);
  background: transparent;
}


.nav_inner {
  width: calc(100% - 20rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_left {
  opacity: 0;
  transition: .4s;
}

.nav_left .nav_logo {
  display: block;
  width: 20.7rem;
}

.nav_left .nav_insta {
  display: none;
}



/* nav_right */
nav.gnav ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4.7rem;
}

nav.gnav ul li {
  position: relative;
}

nav.gnav ul li a,
nav.gnav ul li span {
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: .4s;
}

nav.gnav ul li a:hover,
nav.gnav ul li span:hover {
  opacity: .4;
}

nav.gnav ul li a .en {
  font-size: 1.6rem;
}



/* subNav */
nav.gnav ul .dropNav span {
  transition: .4s;
  position: relative;
}

nav.gnav ul .dropNav span::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/nav_arrow.png);
  width: 1.3rem;
  height: 0.6rem;
  bottom: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
}

nav.gnav ul .dropNav span.is-open {
  color: var(--color-primary);
}

nav.gnav ul li .subNav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 25rem;
  height: 25rem;
  bottom: -27rem;

  display: block;
  text-align: center;
  background: var(--color-primary);
  border-radius: 10000000px;
  padding-top: 1.4rem;
  opacity: 0;
  z-index: -100;
  pointer-events: none;
  transition: .4s;
}

nav.gnav ul li .subNav.is-open {
  opacity: 1;
  z-index: 10;
  pointer-events: all;
}

nav.gnav ul li .subNav li {
  margin-top: 2.2rem;
  line-height: 1.5;
}

nav.gnav ul li .subNav li a {
  color: var(--color-white);
}

nav.gnav ul li .subNav li a:hover {
  color: #F9CE88;
  opacity: 1;
}


.hamburger {
  display: none;
}


header#mainnav.changeNav {
  background: var(--color-bg);
}

header#mainnav.changeNav .nav_left,
#underPages header#mainnav .nav_left {
  opacity: 1;
}

#underPages header#mainnav {
  border-bottom: 1px solid transparent;
}

#underPages header#mainnav.changeNav {
  border-bottom: 1px solid var(--color-primary);

}

@media screen and (max-width:767px) {
  header#mainnav {
    padding: 1.8rem 0 2.6rem;
    background: var(--color-bg);
  }

  .nav_inner {
    width: calc(100% - 3rem);
  }

  .nav_left {
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 11rem;
  }

  .nav_left .nav_logo {
    width: 13rem;
  }

  .nav_left .nav_insta {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  /* hamburger */
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 8rem;
    height: 8rem;
    cursor: pointer;
    z-index: 300;
    padding: 1.6rem 1.5rem 0 0;
  }


  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: absolute;
    /* right: -8.4rem; */
    top: 0;
    /* width: 46.6rem; */
    right: 0;
    width: 100%;
    height: 100vh;
    /* aspect-ratio: 1/1; */

    /* border-radius: 100%; */
    transition: all .2s ease-out;
    z-index: -10;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;


    padding-top: 8rem;

  }

  .nav-open nav.global__nav {
    opacity: 1;
    pointer-events: all;
    z-index: 200;
    visibility: visible;
  }

  .nav_bg {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 50%);
  }

  nav.gnav ul {
    display: block;
    text-align: left;
    width: 100%;
  }

  .nav_circle {
    position: relative;
    margin-left: 9rem;
    margin-top: 9rem;
  }

  .nav_circle::before {
    position: absolute;
    content: "";
    width: 115%;
    height: auto;
    background: var(--color-primary);

    border-radius: 100%;
    aspect-ratio: 1/1;
    top: -7rem;
    left: -8rem;
  }

  nav.gnav ul>li {
    margin-top: 1rem;
    padding-left: 2rem;
  }

  nav.gnav ul>li::before {
    position: absolute;
    content: "";
    width: 1rem;
    height: 1rem;
    background: #F9CE88;
    border-radius: 1000px;
    left: 0;
    top: 1.8rem;
  }

  nav.gnav ul li .subNav {
    opacity: 1;
    position: static;
    z-index: 10;
    pointer-events: all;
    transform: unset;
    width: auto;
    height: auto;
    text-align: left;
    padding: 0;
  }


  nav.gnav ul li a,
  nav.gnav ul li span {
    color: var(--color-white);
    font-size: 2.4rem;
  }


  nav.gnav ul li a:hover,
  nav.gnav ul li span:hover {
    color: var(--color-white);
    opacity: 1;
  }

  nav.gnav ul .dropNav span.is-open {
    color: #F9CE88;
  }

  nav.gnav ul .dropNav span::before {
    background-image: url(../images/nav_arrow_sp.png);
    width: 1.9rem;
    height: 0.84rem;
    bottom: auto;
    top: 58%;
    left: auto;
    transform: translateY(-50%);
    right: -3rem;
  }

  nav.gnav ul li .subNav {
    margin-left: 1.8rem;
    /* height: 0;
    overflow: hidden;
    border-radius: 0;
    transform: .4s; */
    background: transparent;
    height: 100%;
  }

  /* nav.gnav ul li .subNav.is-open {
    height: 17rem;
  } */

  nav.gnav ul li .subNav li {
    margin-top: 1rem;
  }

  nav.gnav ul li .subNav li::before {
    width: 0.8rem;
    height: 0.8rem;
    top: 1rem;
  }

  nav.gnav ul li .subNav li a {
    font-size: 2rem;
  }

}



/*================================================
 *  section btn
 ================================================*/

.main_bg {
  background-image: url(../images/bg.webp);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  width: 100%;
}

section {
  padding-bottom: 11rem;
  position: relative;
}

.section {
  padding-top: 11rem;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_insta {
  background-image: url(../images/icon_insta.png);
  width: 2.6rem;
  height: 2.6rem;
}

.icon_home {
  background-image: url(../images/icon_home.png);
  width: 2.5rem;
  height: 2.5rem;
}

.icon_lens {
  background-image: url(../images/icon_lens.png);
  width: 2rem;
  height: 2rem;
}

/* ボタン */

.btnArea a {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 600;
  width: 36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 1rem;
  border-radius: 100px;
  position: relative;
}

.btnArea.ac a {
  margin: 0 auto;
}

.btnArea a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/btn_arrow.png);
  width: 1rem;
  height: 1.74rem;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%);
}

.btnArea a:hover {
  opacity: .7;
}



.sec_ill {
  position: absolute;
}

@media screen and (max-width:767px) {
  .main_bg {
    background-image: url(../images/bg_sp.webp);
  }

  section {
    padding-bottom: 16rem;
  }

  .section {
    padding-top: 8rem;
  }

  .btnArea a {
    font-size: 1.8rem;
    width: 100%;
  }
}

/*================================================
 * circle
================================================*/

.circle_ttl {
  height: 14rem;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2;
}

.circle_ttl::before,
.circle_ttl::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.circle_ttl::before {
  width: 39.1rem;
  height: 27.1rem;
  background-image: url(../images/circle_ttl.png);
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
}

.circle_ttl::after {
  background-image: url(../images/circle_ttl_border.png);
  width: 39.5rem;
  height: 27.6rem;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: drop-shadow(1rem 1rem 0 #F9CE88);
}

.circle_ttl h2 {
  position: relative;
  z-index: 1;
}

.circle_inner {
  padding: 5rem 4rem 5rem 6rem;
  background: var(--color-white);
  border-radius: 2rem;
  margin-top: -2px;
  border: 1px solid var(--color-primary);
  box-shadow: 1rem 1rem 0 #F9CE88;
  z-index: 1;
}

@media screen and (max-width:767px) {
  .circle_ttl {
    height: 8.5rem;
    padding-top: 3rem;
  }

  .circle_ttl::before {
    width: 22.2rem;
    height: 15.4rem;
  }

  .circle_ttl::after {
    width: 22.5rem;
    height: 15.7rem;
  }

  .circle_inner {
    padding: 5rem 1rem;
    background: var(--color-white);
    border-radius: 3rem;
    box-shadow: 1rem 1rem 0 #F9CE88;
    z-index: 1;
  }
}

/*================================================
 * topNews
================================================*/
#newsSec .lead {
  text-align: center;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

#newsSec .circle_inner {
  position: relative;
  /* min-height: 520px; */

}

#newsSec .circle_inner h3 {
  position: absolute;
  top: 3.7rem;
  right: 5.4rem;
}


#newsSec .circle_inner .btnArea {
  margin-top: 2rem;
}

#newsSec .circle_inner .btnArea a {
  margin-left: auto;
}

.newsSec_inner iframe {
  display: block;
  width: 100%;
  min-height: 6rem;
}

@media screen and (max-width:767px) {
  #newsSec .circle_inner {
    padding-top: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #newsSec .circle_inner h3 {
    top: 2.7rem;
    right: 1rem;
  }
}



/*================================================
 *  フッター
 ================================================*/
footer {
  border-top: 1px solid var(--color-primary);
  padding: 6rem 0;
  margin-top: 10rem;
}

#underPages footer {
  margin-top: 0;
}

footer .wrap {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 7rem;
  color: var(--color-primary);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

footer h2,
.ft_nav li {
  font-size: 1.8rem;
  font-weight: 600;
}

.ft_nav li a {
  font-size: 1.6rem;
  font-weight: 500;
}

footer .ft_copy {
  max-width: 1300px;
  min-width: 742px;
  width: calc(100% - 16rem);
  margin: 0 auto;
  text-align: right;
  color: var(--color-primary);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  top: -2rem;
}

@media screen and (max-width:767px) {

  footer .wrap {
    flex-wrap: wrap;
    gap: 4rem;
  }

  footer .ft_copy {
    min-width: unset;
    width: 37rem;
    margin: 4rem auto 0;
    top: 0;
    text-align: center;
    font-size: 1.2rem;
  }
}

/*================================================
 *  pagetop
 ================================================*/
#pagetop {
  position: fixed;
  right: 2rem;
  bottom: 4rem;
  width: 8.4rem;
  cursor: pointer;
  z-index: 100;

}

#pagetop .dog {
  width: 60%;
  margin: 1rem auto 0;
  display: block;
}

#pagetop:hover .dog {
  animation: rumble 0.6s linear;
}

@keyframes rumble {
  0% {
    transform: rotate(5deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

@media screen and (max-width:767px) {
  #pagetop {
    right: 0.5rem;
    bottom: 2rem;
    width: 5.4rem;
  }
}

/*================================================
 *  mainVisual
 ================================================*/
#subVisual .wrap {
  width: 129.6rem;
  padding-left: 3rem;
}

.subVisual_ttl {
  background: var(--color-primary);
  padding: 1rem 0;
  margin-top: 13rem;
}

.subVisual_ttl h2 {
  color: var(--color-white);
  font-size: 2.8rem;
  font-weight: 700;
}

.subVisual_ttl:has(.product_btn) .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subVisual_ttl .product_btn a {
  color: var(--color-white);
  font-size: 1.8rem;
  padding: 0.5rem 3.4rem;
  border: 0.2rem solid var(--color-white);
  display: inline-block;
  border-radius: 10000px;
  font-weight: 700;
  background: var(--color-primary);
}


#subVisual .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

#subVisual .breadcrumbs li {
  position: relative;
  padding-right: 2rem;
  font-weight: 700;
}

#subVisual .breadcrumbs li:last-child {
  padding-right: 0;
}

#subVisual .breadcrumbs li:not(:last-child):before {
  position: absolute;
  content: "＞";
  right: 0;
  top: 0;
}

#subVisual .breadcrumbs li a {
  font-weight: 500;
}

@media screen and (max-width:767px) {
  #subVisual .wrap {
    width: 36rem;
    padding: 0;
  }

  .subVisual_ttl h2 {
    font-size: 2.4rem;
  }

  .subVisual_ttl:has(.product_btn) .wrap {
    flex-wrap: wrap;
  }

  .subVisual_ttl .product_btn a {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }

}

/*================================================
 *  mainVisual
 ================================================*/
.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s;
}

.fadeUp.on {
  opacity: 1;
  transform: translateY(0px);
}



/* zoom */
.zoom {
  opacity: 0;
  -webkit-transform: scale(0) translateY(1rem) rotate(20deg);
  transform: scale(0) translateY(1rem) rotate(20deg);
  will-change: opacity, transform;
}

.zoom.on {
  -webkit-transition: .8s .4s cubic-bezier(0.34, 1.63, 0.64, 1);
  transition: .8s .4s cubic-bezier(0.34, 1.63, 0.64, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0) rotate(0);
  transform: scale(1) translateY(0) rotate(0);
}


/* delay */
.delay_02s {
  transition-delay: 0.2s;
}

.delay_03s {
  transition-delay: 0.3s;
}

.delay_04s {
  transition-delay: 0.4s;
}

.delay_05s {
  transition-delay: 0.5s;
}

.delay_06s {
  transition-delay: 0.6s;
}

.delay_07s {
  transition-delay: 0.7s;
}

.delay_08s {
  transition-delay: 0.8s;
}

.delay_1s {
  transition-delay: 1s;
}

.delay_12s {
  transition-delay: 1.2s;
}

.delay_14s {
  transition-delay: 1.4s;
}