:root{
    --font-ja: "Noto Sans JP", sans-serif;
    --font-en: "Nunito", sans-serif;
    --color-brown: #5C421B;
    --color-pink: #D36C59;
    --color-yellow: #EBDA70;
    --color-light-yellow: #FFFCE6;
    --color-off-white: #FFFEFA;
    --width-contents: 1280px;
    --width-contents-px-del: 1100; /* calc用（px） */
    --body-top: 72px;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body{    
    font-weight: 400;
    color: var(--color-brown);
    background-color:var(--color-off-white);
    letter-spacing: 0.025em;
    line-height: 1.6;
    overflow-x: hidden;
}

body.is-fixed{
  position: fixed;
  width: 100%;
}

section {
  padding-top: calc(100px + var(--body-top));
}

.inner{
    padding-inline: 36px;
    max-width:var(--width-contents);
    margin: 0 auto;
}

@media screen and (max-width:860px) {
  .inner {
    padding-inline: 40px;
  }
}

@media screen and (max-width:460px) {
  .inner {
    padding-inline: 30px;
  }
}

.button{
    background-color: var(--color-brown);
    color: #FFF;
    padding: 6px 36px;
    border-radius: 35px;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.2s;
}

.button:hover{
    background-color: var(--color-pink);
}

.fade-in-up{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s, transform 1s;
}

.fade-in-up.is-in-view{
    opacity: 1;
    transform: translateY(0);
}

.text-pink{
    color: var(--color-pink);
    font-weight: 600;
}

.text-big{
    font-size: 1.4rem;
    padding-right: 1px;
}

.text-highlight{
  background: linear-gradient(
    transparent 60%,
    rgba(211, 108, 89, 0.35) 60%
  );
}

.text-underline{
    text-decoration: underline;
    transition: all 0.2s;
}

.text-underline:hover{
    opacity: 0.4;
}

.underline-hover {
  position: relative; /* 疑似要素の基準点 */
  text-decoration: none;
  color: var(--color-brown);
}

.underline-hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px; /* 下線の太さ */
  background-color: var(--color-pink); /* 下線の色 */
  transform: scaleX(0); /* 初期状態は線なし */
  transform-origin: left; /* 左側を起点にする */
  transition: transform 0.3s ease; /* アニメーション速度 */
}

.underline-hover:hover::after {
  transform: scaleX(1); /* ホバー時に線を表示 */
}

.inline-block{
  display: inline-block;
}


/* セクションタイトル */
.section__title{
    display: block;
    margin-bottom: 60px;
    width: fit-content;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.section__title__ja{
    font-family: var(--font-ja);
    font-size: 46px;
    font-weight: 600;
}

@media screen and (max-width:400px) {
  .section__title__ja {
    font-size: 40px;
  }
}

.section__title__en{
    font-family: var(--font-en);
    text-align: center;
    line-height: 86px;
    font-size: 20px;
    color:rgba(211, 108, 89, 0.50);
    border: 1px solid rgba(211, 108, 89, 0.30);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    position: absolute;
    top: -46px;
    right: -50px;
    z-index: -1;
}

@media screen and (max-width:400px) {
  .section__title__en {
    right: -24px;
  }
}


/* ロード画面 */
.loading{
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height:100vh;
    z-index: 1000;
    opacity: 1;
    background-color: var(--color-yellow);
    transition: all 0.5s linear;
}

.load__wrap{
    
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

.loading__text {
    font-family: var(--font-en);
    font-weight: 500;
    text-align: center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 32px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	color: var(--color-brown);
    transition: all 0.5s linear;
}


.loading span {
    padding-inline: 1px;
    animation-name: bounce;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}

.loading span:nth-child(2) {
  animation-delay: .1s;	
}
.loading span:nth-child(3) {
  animation-delay: .2s;
  color: var(--color-pink);
}
.loading span:nth-child(4) {
  animation-delay: .3s;	
}
.loading span:nth-child(5) {
  animation-delay: .4s;
}
.loading span:nth-child(6) {
  animation-delay: .5s;	
}
.loading span:nth-child(7) {
  animation-delay: .6s;
}

@keyframes bounce {
  0% {
    transform: translateY(0px)
  }
  40% {
    transform: translateY(-30px);
  }
  80%,
  100% {
    transform: translateY(0px);
  }
}


/* header */
.header{
    position: fixed;
    top:0;
    width: 100%;
    padding-inline: 32px;
    padding-block: 4px;
    color: var(--color-brown);
    z-index: 100;
}

@media screen and (max-width:860px) {
  .header {
    padding-inline: 20px;
  }
}

@media screen and (max-width:50px) {
  .header {
    padding-block: 0px;
  }
}

.inner__header{
    max-width: 1440px;
    padding-inline: 30px;
    margin: 0 auto;
}

@media screen and (max-width:860px) {
  .inner__header {
    padding-inline: 20px;
  }
}

@media screen and (max-width:400px) {
  .inner__header {
    padding-inline: 0px;
  }
}

.header__contents{
    display: flex;
    justify-content:space-between;
    align-items: center;
    /* position: relative; */

}

.header__logo{
    font-size: 36px;
    font-weight: 500;
    font-family: var(--font-en);
}

@media screen and (max-width:500px) {
  .header__logo {
    font-size: 30px;
  }
}

/* drawer icon */
.drawer__icon {
  width: 26px;
  height: 18px;
  position: relative;
  display: none;
}

@media screen and (max-width:740px) {
  .drawer__icon {
    display: block;
  }
}

.drawer__icon.is-open .drawer__icon__bar {
  transition: transform 0.3s;
}

.drawer__icon.is-open .drawer__icon__bar:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotateZ(45deg);
}

.drawer__icon.is-open .drawer__icon__bar:nth-child(2) {
  display: none;
}

.drawer__icon.is-open .drawer__icon__bar:nth-child(3) {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%) rotateZ(-45deg);
}

.drawer__icon__bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-brown);
  position: absolute;
  left: 0;
  transition: transform 0.3s;
}

.drawer__icon__bar:nth-child(1) {
  top: 0px;
}

.drawer__icon__bar:nth-child(2) {
  top: calc(6px + 2px);
}

.drawer__icon__bar:nth-child(3) {
  bottom: 0px;
}

.header__nav{
    display: block;
}

@media screen and (max-width:740px) {
  .header__nav {
    display: none;
  }
}

.header__nav__lists{
    display: flex;
    gap: 30px;
    font-size: 20px;
    font-weight: 600;
}

.header__nav__lists a{
    transition: color 0.2s;
}

.header__nav__lists a:hover{
    color:var(--color-pink);
}

.header__background {
    width: 100%;
    height: auto;
    min-width:1500px;
    position: absolute;
    top: -6px;
    left: 0;
    z-index:-1;
}

@media screen and (max-width:1000px) {
  .header__background {
    top: -6px;
    left: -80px;
  }
}

@media screen and (max-width:500px) {
  .header__background {
    top: -16px;
  }
}

@media screen and (min-width:1800px) {
  .header__background {
    top: -16px;
  }
}

/* drawer */
.drawer {
}

.drawer__nav {
  position: fixed;
  z-index: 90;
  top: calc(var(--body-top) - 40px);
  right: 0;
  transform: translateY(calc(-100% - var(--body-top))); /* ドロワーの高さ分上に移動 */
  width: 100%;
  height: 100%;
  background-color: var(--color-off-white);
  color: var(--color-brown);
  text-align: center;
  overflow: scroll;
  transition: transform 0.6s;
}

.drawer__nav.is-open {
  transform: translateY(0);
}

.drawer__nav__lists {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--color-brown);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-top: 90px;
  padding-bottom: 212px;
}

.drawer__nav__list{
    transition: color 0.2s , ctext-decoration-color 0.2s;
}

.drawer__nav__list:hover {
  color: var(--color-pink);
  cursor: pointer;
}


/* fv */
.fv{
    width: 100%;
    height: 700px;
    min-height: 560px;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width:700px) {
  .fv {
    height: 700px;
  }
}

.fv__wrap{
    position: absolute;
    top:36%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 400px;
}
@media screen and (max-width:700px) {
  .fv__wrap {
    width: 100%;
    max-width: 300px;
  }
}

.fv__texts{
    position: relative;
    z-index: 20;
}

.fv__main__texts{
    text-align: center;
    padding-left: 10px;
}
@media screen and (max-width:700px) {
  .fv__main__texts {
    text-align: left;
    padding-left: 20px;
  }
}

.fv__main__text{
    font-size: 24px;
    letter-spacing: 0.1rem;
    font-weight: 500;
}
@media screen and (max-width:700px) {
  .fv__main__text {
    font-size: 18px;
  }
}

.fv__main__text + .fv__main__text{
    margin-top: 8px;
}

.fv__sub__texts{
    margin-top: 40px;
    text-align: center;
}
@media screen and (max-width:700px) {
  .fv__sub__texts {
    text-align: left;
    padding-left: 20px;
  }
}

.fv__sub__text{
}


.fv__decoration{
  position: absolute;
  inset: 0;
  z-index: 10;
}
@media screen and (max-width:700px) {
  .fv__decoration {
    transform: scale(0.8) translateX(-30px);
  }
}
@media screen and (max-width:360px) {
  .fv__decoration {
    transform: scale(0.8) translateX(-60px);
  }
}

.fv__honey__01{
    position: absolute;
    top: -210px;
    left: -216px;
    background: url(../img/FV_honey_01.png) no-repeat center center / contain;
    width: 325.381px;
    height: 241.684px;
}
@media screen and (max-width:700px) {
  .fv__honey__01 {
    display: none;
  }
}

.fv__honey__01::after {
  content: "";
  position: absolute;
  inset: 0;
  background:#FFF;
  opacity: 0.2;
  animation: glow01 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow01 {
  0%,100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.fv__honey__02{
    position: absolute;
    top: -190px;
    right: -344px;
    background: url(../img/FV_honey_02.png) no-repeat center center / contain;
    width: 504.24px;
    height: 292.803px;
    z-index: 2;
}
@media screen and (max-width:700px) {
  .fv__honey__02 {
    top: calc(-190px - 50px);
    right: calc(-344px + 50px);
  }
}

.fv__honey__02::after {
  content: "";
  position: absolute;
  inset: 0;
  background:#FFF;
  opacity: 0.6;
  animation: glow02 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow02 {
  0%,100% { opacity: 0.6; }
  50% { opacity: 0.2; }
}

.fv__honey__03{
    position: absolute;
    bottom: -200px;
    left: -356px;
    background: url(../img/FV_honey_03.png) no-repeat center center / contain;
    width: 559.707px;
    height: 342.259px;
}
@media screen and (max-width:700px) {
  .fv__honey__03 {
    bottom: calc(-200px - 50px);
    left: calc(-356px + 50px);
  }
}

.fv__honey__03::after {
  content: "";
  position: absolute;
  inset: 0;
  background:#FFF;
  opacity: 0.2;
  animation: glow03 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow03 {
  0% { opacity: 0.2; }
  30% { opacity: 0.6; }
  70% { opacity: 0.6; }
  100% { opacity: 0.2; }
}

.fv__honey__scroll{
    position: absolute;
    bottom: -166px;
    right: -130px;
    background: url(../img/FV_scroll.png) no-repeat center center / contain;
    width: 100px;
    height: 108px;
    z-index: 2;
}
@media screen and (max-width:700px) {
  .fv__honey__scroll {
    bottom: calc(-166px - 50px);
    right: calc(-130px + 30px);
  }
}

.fv__honey__drop{
    position: absolute;
    bottom: -154px;
    right: -93px;
    background: url(../img/FV_honey_drop.png) no-repeat center center / contain;
    width: 27px;
    height: 42px;
    z-index: 1;
    animation: fall 3.5s cubic-bezier(.4,0,.2,1) infinite;
    opacity: 0;
}
@media screen and (max-width:700px) {
  .fv__honey__drop {
    right: calc(-93px + 30px);
  }
}

@keyframes fall{
    0% {
    bottom: 700px;
    opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    70% {
        bottom: -160px;
        opacity: 1;
    }

    100% {
        bottom: -160px;
        opacity: 1;
    }
}


/* gallery */
#gallery {
  scroll-margin-top: 60px; /* ヘッダー分 */
}

.gallery{
    padding-bottom: 180px;
    background-color: var(--color-light-yellow);
}

.gallery__group{}

.gallery__group__banner{
    padding-top: 120px;
}

.gallery__group__head{
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.gallery__this-site{
    max-width: 500px;
    font-size: 14px;
    margin: 0 auto 50px;
}

.gallery__cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 50px;
    row-gap: 80px;
}

@media screen and (max-width:460px) {
  .gallery__cards {
    column-gap: 0px;
  }
}

.gallery__card{
    width: calc(300px + 30px * 2);
    padding-inline: 26px;
    padding-block: 36px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(92, 66, 27, 0.2);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:460px) {
  .gallery__card {
    width: 80vw;
    padding-inline: 16px;
    padding-block: 20px;
  }
}

.gallery__image {
    width: fit-content;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.gallery__card-website .gallery__image{
    height: 200px;
}

.gallery__card-design .gallery__image{
    height: 250px;
}

@media screen and (max-width:400px) {
  .gallery__card-design .gallery__image {
    height: 180px;
  }
}

.gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

@media screen and (max-width:400px) {
  .gallery__image img {
    object-fit: cover;
  }
}

/* 共通の hover レイヤー */
.gallery__image::after {
    content: "";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.gallery__card:hover .gallery__image::after {
    opacity: 1;
}

.gallery__card:hover .gallery__image img {
    transform: scale(1.1);
}

.gallery__image::after {
    content: "詳しく見る";
}


.gallery__contents{}

.gallery__name{
    margin-block: 16px;
    font-size: 16px;
    font-weight: 500;
}

.gallery__tags{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.gallery__tag{
    display: block;
    border: 1px solid rgba(92, 66, 27, 0.7);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
}

.gallery__tag--charge{}

.gallery__tag--category{
    background-color:rgba(92, 66, 27, 0.8);
    color: white;
}


/* about */
#about {
  scroll-margin-top: 60px; /* ヘッダー分 */
}

.about{
}

.inner__about{
    
}

.about__outline{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 860px;
    gap: calc(60 / 860 * 100%);
    margin: 0 auto;
}

@media screen and (max-width:740px) {
  .about__outline {
    flex-direction: column-reverse;
  }
}

.about__image{
    width: 200px;
}

.about__image__container {
  padding: 5%;
}

.about__image__block {
    width: 200px;
    height: 200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.about__image__block::after{
    content:"";
    width: 198px;
    height: 198px;
    background:url(../img/icon-face.png) no-repeat center center / contain;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

.about__image__circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}

.about__image__circleText__circle {
    fill: none;
}

.about__image__circleText__text {
    fill: var(--color-brown);
    font-size: 14px;
    font-family: var(--font-en);
    letter-spacing: 0.025em;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about__text{
}

.about__text__lists{
    display: grid;
    grid-template-columns: 1fr 6fr;
    align-items: center;
    row-gap: 20px;
    font-size: 14px;
}

@media screen and (max-width:740px) {
  .about__text__lists {
    padding-top: 40px;
    margin: 0 auto;
    max-width: 600px;
  }
}

.about__text__head{
    width: 100px;
    padding-left: 16px;
    position: relative;

}

.about__text__head::before{
    content:"";
    width: 8px;
    height: 8px;
    background-color: rgba(211, 108, 89, 0.70);
    border-radius: 50%;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-45%);
}

.about__text__body{
    position: relative;
    padding-left: 40px;
}

.about__text__body::before{
    content:"";
    display: inline-block;
    width: 3px;
    height:100%;position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 3px;
    background: rgba(211, 108, 89, 0.70);
}

.about__introduction{    
    padding-top: 60px;
}

.about__strength{    
    padding-top: 120px;
}

.about__skill {    
    padding-top: calc(120px + 60px);
}

.about__introduction__text{
    font-size: 14px;
    letter-spacing: 0.05em;
    max-width: 860px;
    margin: 0 auto;
}

.about__introduction__text__sentence{
    margin-bottom: 20px;
}

.about__introduction__text__sentence-last{
    margin-bottom: 0;
}

.about__subtitle{
    width: 100%;
    border-bottom: solid 1px var(--color-brown);
    padding-bottom: 8px;
    margin-bottom: 100px;
}

.about__strength{

}

.about__strength__lists {
    display: flex;
    flex-direction: row;
    gap: 4%;
}

@media screen and (max-width:1000px) {
  .about__strength__lists {
    flex-direction: column;
    gap: 40px;
  }
}

.about__strength__card {
    width: calc((100% - 8%) / 3);
    padding-top: 40px;
    padding-bottom: 80px;
    padding-inline: 30px;
    border: 10px solid rgba(92,66,27,0.08);
    position: relative;
}

@media screen and (max-width:1000px) {
  .about__strength__card {
    width: 100%;
  }
}

@media screen and (max-width:400px) {
  .about__strength__card {
    padding-inline: 20px;
  }
}

.about__strength__card:nth-child(1) {
  transform: translateY(0);
}

.about__strength__card:nth-child(2) {
  transform: translateY(30px);
}

.about__strength__card:nth-child(3) {
  transform: translateY(60px);
}

@media screen and (max-width:1000px) {
  .about__strength__card:nth-child(2),
  .about__strength__card:nth-child(3) {
    transform: translateY(0);
  }
}


.about__strength__number{
    position: absolute;
    bottom:0;
    right:2px;
}

.about__strength__number{
    display: block;
    font-size: 24px;
    font-weight: 500;
}

.about__strength__head{
    color: var(--color-pink);
    font-size: 24px;
    font-weight: 500;
}

.about__strength__body{
    font-size: 14px;
    margin-top: 20px;
}

.about__strength__sns{
    display: inline-block;
    margin-top: 16px;
    border-bottom: 1px solid var(--color-brown);
    padding-right: calc(12px + 2px);
    padding-left: 2px;
    font-weight: 600;
    position: relative;
    transition: border-bottom-color 0.2s , color 0.2s;
}

.about__strength__sns::after{
    content:"";
    width: 12px;
    height: 10px;
    background-color: var(--color-brown);
    clip-path: polygon(40% 0% , 100% 50% , 40% 100%);
    position: absolute;
    top:50%;
    transform: translateY(-40%);
    right:2px;
    transition: background-color 0.2s;
}

.about__strength__sns:hover{
    border-bottom-color:var(--color-pink);
    color: var(--color-pink);
}

.about__strength__sns:hover::after{
    background-color:var(--color-pink);
}

.about__skill{
}

.about__skill__contents{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    gap: calc(60 / 860 * 100%);
    max-width: 860px;
}

@media screen and (max-width:740px) {
  .about__skill__contents {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.about__skill__contents + .about__skill__contents{
    margin-top: 90px;
}

.about__skill__icon{
    width: 120px;
    flex-shrink: 0;
}

.about__skill__icon img{
    width: 100%;
    height: auto;
}

.about__skill__content{
    flex-grow: 1;
    min-width: 0;
}

.about__skill__content__name{
    font-size: 36px;
    font-weight: 500;
    font-family: var(--font-en);
    line-height: 36px;
    margin-bottom: 16px;
}

@media screen and (max-width:740px) {
  .about__skill__content__name {
    text-align: center;
    margin-bottom: 30px;
  }
}

.about__skill__content__text{
    margin-bottom: 12px;
}

.about__skill__content__item{
    padding-block: 12px;
    max-width: 680px;
}

.about__skill__content__item__head{
    position: relative;
    padding-left: 16px;
    font-weight: 500;
}

.about__skill__content__item__head::before{
    content:"";
    width: 8px;
    height: 8px;
    background-color: rgba(211, 108, 89, 0.70);
    border-radius: 50%;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-45%);
}

.about__skill__content__item__body{
    padding-left: 16px;
    margin-top: 4px;
    font-size: 14px;
}


/* contact */
.contact{
    overflow: hidden;
}

.contact__top {
    background: var(--color-light-yellow);
    border-top-left-radius: 800px 200px;
    border-top-right-radius: 800px 200px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 200px;
    
}

.contact__content {
    background: var(--color-light-yellow);
    padding-bottom: 100px;
}

.contact__form__wrap{
    padding-inline: 30px;
}

.contact-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 40px 40px;
  background: white;
  border-radius: 8px;
}

/* form item */
.contact-form .form-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-item label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form .form-item label .required {
  background-color: var(--color-pink);
  color: #FFF;
  font-size: 12px;
  padding: 2px 8px 4px 8px;
  border-radius: 4px;
  margin-left: 12px;
}

.contact-form .form-item input,
.contact-form .form-item select,
.contact-form .form-item textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca;
}

.contact-form .form-item input:focus,
.contact-form .form-item select:focus,
.contact-form .form-item textarea:focus {
  border-color: var(--color-pink);
  outline: none;
}

.contact-form .form-item textarea {
  resize: vertical;
}

.error-message {
  color: #d60000;
  font-size: 14px;
  min-height: 1em;
}

.input-error {
  border: 1px solid #d60000 !important;
}


/* プライバシーポリシー */
.contact-form .form-privacy {
  text-align: center;
}

.contact-form .form-privacy__text {
  padding-left: 28px;
  position: relative;
}

.contact-form .form-privacy__text::before,
.contact-form .form-privacy__text::after {
  content: "";
  position: absolute;
  top: 50%;
}

.contact-form .form-privacy__text::before {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-brown);
  border-radius: 4px;
  left: 0;
  transform: translateY(-38%);
}

.contact-form .form-privacy__text::after {
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-pink);
  border-bottom: 2px solid var(--color-pink);
  left: 3px;
  transform: translateY(-42%) rotate(-45deg);
  opacity: 0;
}


/* モーダル */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  padding: 30px;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.modal__content {
  position: relative;
  z-index: 1; 
  max-width: 860px;
  margin: 10vh auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;     /* 角丸を守る */
}

.modal__body {
  max-height: 80vh;
  max-width: 680px;
  overflow-y: auto;     /* 縦スクロールを許可 */
  padding-block: 60px;
  padding-inline: 20px;
  margin: 0 auto;
}

.modal__close {
  color: var(--color-brown);
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 6%;
  right: 4%;
}

.modal__close svg{
  width: 24px;
  height: 24px;
}

.modal__text{
}

.modal__text__head{
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width:400px) {
  .modal__text__head {
    font-size: 20px;
  }
}

.modal__text__body{
  margin-top: 24px;
}



/* checkbox */
.contact-form .form-privacy__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  pointer-events: auto;
}

.contact-form .form-privacy__input:checked + .form-privacy__text::after {
  opacity: 1;
}


/* gallery__detail */
.inner__gallery__detail{
}

.gallery__detail__contents{
    max-width: 900px;
    margin: 0 auto;
}

.gallery__detail__head{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 74px;
    padding-top: 30px;
}

@media screen and (max-width:860px) {
  .gallery__detail__head {
    flex-direction: column;
    gap: 50px;
    padding-top: 0px;
  }
}

@media screen and (max-width:400px) {
  .gallery__detail__head {
    font-size: 14px;
  }
}

.gallery__detail__head__image{
    max-width: 500px;
    width: calc(500 / 900 * 100%);
}

@media screen and (max-width:860px) {
  .gallery__detail__head__image {
    width: 80vw;
  }
}

.gallery__detail__head__item{
}

.gallery__detail__head__item-main{
    font-size: 24px;
}

@media screen and (max-width:400px) {
  .gallery__detail__head__item-main {
    font-size: 20px;
  }
}

.gallery__detail__head__item-main .gallery__detail__head__item__title{
    margin-bottom: 8px;
}

.gallery__detail__head__item-sub{
    display: flex;
    gap: 20px;
    font-size: 16px;
    margin-top: 80px;
}

@media screen and (max-width:320px) {
  .gallery__detail__head__item-sub {
    gap: 10px;
  }
}

@media screen and (max-width:860px) {
  .gallery__detail__head__item-sub {
    margin-top: 40px;
  }
}

@media screen and (max-width:400px) {
  .gallery__detail__head__item-sub {
    font-size: 14px;
  }
}

.gallery__detail__head__item-sub + .gallery__detail__head__item-sub{
    margin-top: 20px;
}

.gallery__detail__head__item__title{
    font-weight: 600;
    height: fit-content;
    width: fit-content;
}

.gallery__detail__head__item__text{}

.button__slide__wrap{
  padding-top: 40px;
}

@media screen and (max-width:860px) {
  .button__slide__wrap {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
  }
}

/* ボタン本体 */
.button__slide{
  display: inline-block;
  width: fit-content;
  border: 1px solid var(--color-brown);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-brown);
  transition: color 0.2s;
}

.button__slide__to-right{
  padding: 4px 42px 4px 30px;
}

.button__slide__to-left{
  padding: 4px 30px 4px 42px;
}

.button__slide__text{
  color: var(--color-brown);
  position: relative;
  z-index: 1;   /* ← 背景より前 */
}

/* 背景スライド */
.button__slide__to-right::before,
.button__slide__to-left::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-brown);
  transform: scaleX(0);
  transition: transform 0.2s linear;
  z-index: 0;
}

.button__slide__to-right::before{
  transform-origin: left;
}

.button__slide__to-left::before{
  transform-origin: right;
}

/* 矢印 */
.button__slide__to-right::after{
  content:"";
  width: 12px;
  height: 10px;
  background-color: var(--color-brown);
  clip-path: polygon(40% 0%, 100% 50%, 40% 100%);
  position: absolute;
  top:50%;
  right:24px;
  transform: translateY(-40%);
  transition: background-color 0.2s, transform 0.2s;
  z-index: 1;
}

.button__slide__to-left::after{
  content:"";
  width: 12px;
  height: 10px;
  background-color: var(--color-brown);
  clip-path: polygon(0% 50%, 60% 0%, 60% 100%);
  position: absolute;
  top:50%;
  left:24px;
  transform: translateY(-40%);
  transition: background-color 0.2s, transform 0.2s;
  z-index: 1;
}

/* hover */
.button__slide__to-right:hover::before,
.button__slide__to-left:hover::before{
  transform: scaleX(1);
}

.button__slide:hover .button__slide__text,
.button__slide:hover .button__slide__text{
  color: #fff;
}

.button__slide__to-right:hover::after,
.button__slide__to-left:hover::after{
  background-color: #fff;
}

.button__slide__to-right:hover::after{
  transform: translate(10px, -40%);
}

.button__slide__to-left:hover::after{
  transform: translate(-10px, -40%);
}

.gallery__detail__head__auth{
    font-size: 14px;
    padding-top: 20px;
}

.gallery__detail__outline{
    margin-top: 140px;
    margin-bottom: 140px;
}

@media screen and (max-width:500px) {
  .gallery__detail__outline {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.gallery__detail__content__title{
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-pink);
}

@media screen and (max-width:860px) {
  .gallery__detail__content__title {
    text-align: center;
  }
}

.gallery__detail__outline__item{
    margin-top: 40px;
}

.gallery__detail__outline__item__content{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: calc(100 / 900 * 100%);
}

@media screen and (max-width:680px) {
  .gallery__detail__outline__item__content {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}



.gallery__detail__outline__item__content + .gallery__detail__outline__item__content{
    margin-top: 40px;
}

@media screen and (max-width:680px) {
  .gallery__detail__outline__item__content + .gallery__detail__outline__item__content{
    margin-top: 50px;
  }
}

.gallery__detail__outline__item__content__name{
    display: block;
    width: 90px;
    flex-shrink: 0;
    font-weight: 600;
}

.gallery__detail__outline__item__content__text{
}

.gallery__detail__outline__item__content__implement{
  
}

.gallery__detail__outline__item__content__point{
    padding-left: 12px;
    position: relative;

}

.gallery__detail__outline__item__content__point::before{
    content:"";
    width: 5px;
    height: 5px;
    background-color: rgba(92, 66, 27, 0.8);
    border-radius: 50%;
    position: absolute;
    top:13px;
    left: 0;
    transform: translateY(-45%);
}

.gallery__detail__outline__item__content__point + .gallery__detail__outline__item__content__point{
  margin-top: 12px;
}


.gallery__detail__point{
    margin-bottom: 100px;
}

.gallery__detail__point__item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

@media screen and (max-width:860px) {
  .gallery__detail__point__item {
    flex-direction: column;
  }
}

.gallery__detail__point__item__image{
    max-width: 400px;
    width: calc(400 / 900 * 100%);
    padding-top: 80px;
}

@media screen and (max-width:860px) {
  .gallery__detail__point__item__image {
    width: 380px;
    padding-top: 40px;
    margin: 0 auto;
  }
}

@media screen and (max-width:560px) {
  .gallery__detail__point__item__image {
    width: 70vw;
  }
}

.gallery__detail__point__swiper{
    position: relative;
    overflow: visible;
}

@media screen and (max-width:860px) {
  .gallery__detail__point__swiper {
    padding-top: 40px;
    margin: 0 auto;
  }
}

.gallery__detail__swiper {
    width: calc(380px + 30px * 2);
    height: calc(560px + 30px);
    padding-inline: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

@media screen and (max-width:560px) {
  .gallery__detail__swiper {
    width: 76vw;
    height:auto;
    padding-inline: 30px;
  }
}

@media screen and (max-width:460px) {
  .gallery__detail__swiper {
    width: 86vw;
    padding-inline: 20px;
  }
}

.gallery__detail__swiper-wrapper{}

.gallery__detail__swiper-slide{
    width: 100%;
    height: 100%;
    background: #FFF;
}

.gallery__detail__swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullets{
    transform: translateY(30px);
}

.swiper-pagination-bullet{
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active{
    background:var(--color-brown);
}

.swiper-button-prev svg,
.swiper-button-next svg{
    opacity: 0;
}

.gallery__detail__swiper-button-prev::after{
    content:"";
    width: 50px;
    height: 50px;
    background: url(../img/swiper-button-prev.png)no-repeat center center / contain;
    position: absolute;
    top:0;
    left: 0;
}

@media screen and (max-width:460px) {
  .gallery__detail__swiper-button-prev::after {
    width: 42px;
    height: 42px;
  }
}

.gallery__detail__swiper-button-next::after{
    content:"";
    width: 50px;
    height: 50px;
    background: url(../img/swiper-button-next.png)no-repeat center center / contain;
    position: absolute;
    top:0;
    right: 0;
}

@media screen and (max-width:460px) {
  .gallery__detail__swiper-button-next::after {
    width: 42px;
    height: 42px;
  }
}

.gallery__detail__next{
    padding-bottom: 160px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 560px;
}

@media screen and (max-width:500px) {
  .gallery__detail__next {
    flex-direction: column;
    width: fit-content;
    justify-content:center;
    gap: 30px;
    padding-bottom: 120px;
  }
}

.to__summary,
.to__prev,
.to__next{
    width: fit-content;
    margin: auto;
}

/* footer */
.footer{
    background-color: var(--color-light-yellow);
}

.footer__copylight{
    font-size: 12px;
    color: var(--color-brown);
    text-align: center;
    padding-block: 10px;
}