@charset "UTF-8";
.header{
    width:100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    font-weight: 500;
}
.header-inner{
    position: relative;
    display: flex;
}
.header-logo-box{
    position: absolute;
    left: 0;
    top: 0;
    width: 190px;
    height: 190px;
    background-color: white;
    border-bottom-right-radius: 40px
}
.header-logo-box img{
    padding: 55px 30px;
}
#header-nav{
    display: flex;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
    padding: 23px 70px;
    border-bottom-left-radius: 40px;
    gap:60px;
    font-weight: 600;
    
}
#header-nav a:hover .dot-list::before{
    background-color: #F7722D;
}
#header-nav a:hover .en-sub{
    color: #F7722D;
}
.dot-list{
    position: relative;
    padding-left: 20px;
    
}
.dot-list::before{
    content: '';
    width: 6px;
    height: 6px;
    background-color: #FABE00;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 9.5px;
    transition: .5s ease all;
}
.button-n{
    background-color: #FFFCF2;
    padding: 15px 40px;
}
#header-nav .en-sub{
    color: #FABE00;
    font-size: 1.4rem;
    text-align: center;
    transition: .5s ease all;
}
.orange{
    color: #F7722D;
}
h2{
    font-size: 3.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}
h3{
    font-size: 2.4rem;
    margin-bottom: 20px;
}
h4{
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.en-sub{
    font-size: 2rem;
    color: #FABE00;
    line-height: 1;
    margin-bottom: 10px;
}
.u-line{
    border-bottom: 2px solid #FABE00;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.link-brown{
    color: #A9733F;
}
.yellow{
    padding: 15px 40px 13px;
    background-color: #FFEEB8;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-top: 40px;
    letter-spacing: 0.05em;
    transition: .5s ease all;
    line-height: 1.1;
}
.brown{
    padding: 15px 40px 13px;
    background-color: #A9733F;
    color: white;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-top: 40px;
    letter-spacing: 0.05em;
    transition: .5s ease all;
    line-height: 1.1;
}
.brown .chevron-right::before {
  border-top: 2px solid #A9733F;
  border-right: 2px solid #A9733F;
}
.chevron-right{
    display: inline-block;
    vertical-align: middle;
    color: white;
    line-height: 1;
    position: relative;
    width: 20px;
    height: 20px;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-right: 15px;
    margin-top: -2px;
    transition: .4s ease;
}
.chevron-right::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 2px solid #FABE00;
  border-right: 2px solid #FABE00;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 2px;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  transition: .4s ease;
}
.yellow:hover{
    background-color: #FABE00;
}
.yellow:hover .chevron-right{
    margin-right: 10px;
    margin-left: 5px;
}
.brown:hover{
    background-color: #8C2A04;
}
.brown:hover .chevron-right{
    margin-right: 10px;
    margin-left: 5px;
}
.box-brown{
    color: white;
    padding: 10px 30px;
    background-color: #A9733F;
    border-radius: 30px;
    display: inline-block;
    line-height: 1;
    margin-bottom: 40px;
}
.center{
    width: 100%;
    text-align: center;
}
.b-white{
    background-color: white;
    z-index: 2;
    position: relative;
    width: 100vw;
    padding: 120px 0 0;
}
.c-2{
    background-color: white;
}
.clum-yellow{
    width: 100%;
    margin: 40px auto;
    padding: 50px 80px 55px;
    background-color: #FFFCF2;
}
.pencil-underline {
  display: inline-block;
  position: relative;
  z-index: 4;
}
.pencil-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background-image: url(img/u-line.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
}
footer{
    width: 100%;
    background-color: #FFFBF8;
    margin-top: 80px;
}
.footer-inner{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 100px 0 80px;
    display: flex;
    justify-content: space-between;
}
.footer-logo{
    width: 300px;
    margin-bottom: 40px;
}
.fl-3{
    margin-top: 50px;
    font-weight: 400;
}
.fl-3 img{
    width: 220px;
    margin-top: 10px;
}
.footer-right ul{
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    width: 320px;
    margin-bottom: 35px;
    justify-content: flex-end;
}
.footer-right li{
    width: 120px;
    text-align: left;
}
.footer-sns{
    display: flex;
    gap:40px;
    align-items: center;
    margin-top: 50px;
    justify-content: flex-end;
    margin-right: 20px;
}
.footer-sns img{
    width: 40px;
}
.copyright{
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #A9733F;
    line-height: 1;
}
.reserve{
    color: white;
    background-color: #8C2A04;
    width: 180px;
    height: 180px;
    position: fixed;
    border-radius: 50%;
    transition: .5s ease all;
    bottom: 6%;
    right: 4%;
    z-index: 998;
}
.reserve:hover{
    bottom: 6.5%;
    background-color: #775F4A;
}
.reserve-inner{
    font-size: 1.8rem;
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
}
.reserve-text{
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
}
.inner-circle{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 165px;
    height: 165px;
    border: 1px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.external{
    font-size: 1.4rem;
}

@media only screen and (max-width: 1000px) {
    .footer-left{
        margin-left: 10px;
    }
    .footer-right{
        margin-right: 10px;
    }
    #header-nav{
        display: none;
    }
    #menu-button{
    position: absolute;
    z-index: 15;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    transition: .3s ease;
    border-radius: 50%;
    background-color: #FABE00;
  }
    #menu-button span {
    background-color: white;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: .3s;
  }
    #menu-button span::before, #menu-button span::after {
    content: '';
    background-color: white;
    width: 20px;
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
  }
  #menu-button span::before{
    top: 5px;
  }
    #menu-button span::after{
    bottom: 5px;
  }
  #menu-toggle:checked ~ #menu-button span {
  width: 0;
}
  #menu-toggle:checked ~ #menu-button span::before {
  opacity: 1;
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
}
#menu-toggle:checked ~ #menu-button span::after {
  opacity: 1;
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
  left: 50%;
}
}

@media only screen and (max-width: 768px) {
    #header{
        position: fixed;
    }
    h2{
    font-size: 2.4rem;
    margin-bottom: 30px;
    }
    h3{
        font-size: 2rem;
        margin-bottom: 20px;
    }
    h4{
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    .header-logo-box{
        width: 90px;
        height: 90px;
        border-bottom-right-radius: 20px;
    }
    .header-logo-box img{
        padding: 25px 10px;
    }
    .yellow{
        padding: 15px 20px 13px;
        letter-spacing: 0.03em;
        min-width: 250px;
    }
    .u-line {
    margin-bottom: 30px;
    padding-bottom: 5px;
    }
    .box-brown {
        margin-bottom: 20px;
    }
    .brown-2{
        padding: 15px 20px 13px;
        letter-spacing: 0.03em;
        padding: 15px 40px 13px;
        background-color: #A9733F;
        color: white;
        border-radius: 10px;
        display: inline-block !important;
        font-weight: 600;
        font-family: "M PLUS Rounded 1c", sans-serif;
        margin-top: 40px;
        letter-spacing: 0.05em;
        transition: .5s ease all;
        line-height: 1.7;
    }
    .brown-2 .chevron-right::before {
        border-top: 2px solid #A9733F;
        border-right: 2px solid #A9733F;
    }
    footer {
        margin-top: 80px;
    }
    .footer-inner {
        width: 100%;
        max-width: 1120px;
        margin: 0 auto;
        padding: 40px 10px 40px;
        display: grid;
        justify-content: space-between;
    }
    .footer-right ul {
        display: grid;
        gap: 20px;
        justify-content: flex-start;
        margin-bottom: 20px;
        top: 0;
        right: 0;

    }
    .footer-right ul li{
        position: relative;
        padding-left: 20px;
        width: 100%;
    }
    .footer-right ul li::before{
        content: '';
        width: 6px;
        height: 6px;
        background-color: #FABE00;
        border-radius: 50%;
        position: absolute;
        left: 5px;
        top: 9.5px;
    }
    .footer-right ul li::before:last-child{
        display: none;
    }
    .footer-right li:nth-child(2n) {
    text-align: left;
    }
    .footer-right{
        margin-top: 50px;
    }
    .footer-sns {
    display: grid;
    gap: 10px;
    justify-content: flex-start;
    }
    .fix-reserve{
        position: fixed;
        background-color: #8C2A04;
        color: white;
        bottom: 0;
        width: 100%;
        letter-spacing: 0.03em;
        padding: 12px 0;
        z-index: 20;
    }
    .fix-reserve-inner{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fix-reserve-inner .chevron-right::before{
        border-top: 2px solid #A9733F;
        border-right: 2px solid #A9733F;
    }
        .button-reserve{
        color: white;
        background-color: #A9733F;
        padding: 10px 20px;
        display: inline-block;
        border-radius: 10px;
        width: 100%;
        margin-top: 20px;
        display: flex !important;
        align-items: center;
        justify-content: center;
}
}
#drawer-menu{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	display: inline-block;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
	z-index: 10;
	backdrop-filter: blur(4.5px);
	transform: translateX(100%);
}
#drawer-menu a{
	font-size: 1.4rem;
}
#drawer-menu ul{
	z-index: 990;
	display: grid;
}
#drawer-menu .dli-close-circle {
	width: 20px;
	height: 20px;
	margin: auto 0;
}
#drawer-menu a{
	color: #000000 ;
	display: block;
	font-size: 1.6rem;
	padding: 15px 10px;
	width: 100%;
    text-align: center;
}
#drawer-menu .button-yellow,.drawer-menu .button-blue{
	margin: 15px auto 0;
}
#menu-button{
	cursor: pointer;
}
#menu-toggle:checked ~ #drawer-menu{
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
#menu-toggle:checked  ~  .header__hamburger span::before{
	opacity: 1;
	top: 50%;
	transform: translateX(-50%) rotate(45deg);
	left: 50%;
}
#menu-toggle:checked  ~  .header__hamburger span::after{
	opacity: 1;
	top: 50%;
	transform: translateX(-50%) rotate(-45deg);
	left: 50%;
}
#menu-toggle:checked  ~  .header__hamburger span{
    width: 0;
}
#menu-toggle {
	display: none;
  }
.sp-nav-recruit{
	display: none;
}

#drawer-menu .button-reserve{
    translate: -50%;
    position: absolute;
    left: 50%;
    color: white;
    background-color: #A9733F;
    padding: 10px 20px;
    border-radius: 10px;
    width: 70%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-reserve .chevron-right::before{
    border-top: 2px solid #A9733F;
    border-right: 2px solid #A9733F;

}
.menu-list li:first-child{
    margin-top: 100px;
}