@charset "UTF-8";
/************
変数
************/
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sub-src/ZenMaruGothic-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sub-src/ZenMaruGothic-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  color: #413B32;
}
@media (max-width: 1100px) {
  body {
    font-size: 1.6rem;
  }
}

.section {
  padding: 10rem 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #F38300;
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  border-bottom: 3px dotted #F38300;
}

.flex-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .flex-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.tx {
  line-height: 1.8;
}

.btn {
  display: block;
  margin: 0 auto;
  background-color: #F38300;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.btn:hover {
  background-color: #f76805;
}

.contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  position: fixed;
  bottom: 50px;
  right: 0;
  background-color: #F38300;
  padding: 1rem 4rem 1rem 1rem;
  color: #fff;
  border-radius: 500px 0 0 500px;
  font-size: 2.8rem;
}
.contact-link:hover .mail img {
  transform: translate(-50%, -50%) rotate(360deg);
}
.contact-link .mail {
  width: 60px;
  height: 60px;
  border-radius: 500px;
  background-color: #fff;
  position: relative;
}
.contact-link .mail img {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: translate(-50%, -50%) rotate(0deg);
}
@media (max-width: 1100px) {
  .contact-link {
    transform: translateX(68%);
    bottom: 20px;
  }
}

.bar {
  position: relative;
}
.bar::after {
  content: "";
  width: 80%;
  max-width: 300px;
  border-bottom: 1px solid #413B32;
  position: absolute;
  bottom: 0;
  left: 0;
}

/**************************
animation
**************************/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
  will-change: opacity, transform, animation;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/**************************
header start
**************************/
.brand {
  font-weight: 700;
  font-size: 2rem;
}

.site-header {
  overflow: hidden;
}

.site-header.open {
  overflow: initial;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  padding: 0.8rem 20px;
  background-color: #F38300;
  color: #fff;
  position: relative;
}
nav .drawer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .drawer .logo a img {
  width: 100px;
  height: auto;
}
@media (max-width: 720px) {
  nav .drawer {
    width: 100%;
  }
}
nav .toggle {
  display: none;
  font-size: 2rem;
}
@media (max-width: 720px) {
  nav .toggle {
    display: block;
  }
}
nav .menu.open {
  visibility: visible;
  opacity: 1;
  right: 0;
  transition: all 0.5s ease;
}
nav .menu {
  width: 100%;
  font-size: 1.2rem;
  transition: 0.5s ease;
}
@media (max-width: 720px) {
  nav .menu {
    position: absolute;
    text-align: center;
    background-color: #F38300;
    width: 240px;
    top: 70px;
    right: -240px;
    z-index: 1000;
    visibility: hidden; /**/
    opacity: 0; /**/
  }
}
nav .menu .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 720px) {
  nav .menu .nav-wrapper {
    flex-direction: column;
    width: 100%;
  }
}
nav .menu .nav-wrapper .nav-item:last-child a {
  border-bottom: none;
}
nav .menu .nav-wrapper .nav-item {
  cursor: pointer;
}
@media (min-width: 720px) {
  nav .menu .nav-wrapper .nav-item:hover a {
    font-size: 2rem;
  }
}
nav .menu .nav-wrapper .nav-item a {
  font-size: 1.8rem;
  padding: 0 1rem;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  nav .menu .nav-wrapper .nav-item a {
    display: block;
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
}

/********header end*******/
/********main content start******/
/********appeal start******/
.appeal-wrapper {
  width: 100%;
  height: 90vh;
  max-height: 870px;
  background-color: #FFF2BE;
}
.appeal-wrapper h1 {
  width: 80%;
  margin: 0 auto;
}
.appeal-wrapper h1 img {
  width: 100%;
  height: auto;
}
.appeal-wrapper .title-wrapper {
  width: 100%;
  max-width: 1100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.appeal-wrapper .title-wrapper .canpany-name {
  color: #413B32;
  font-size: 3.4vw;
  line-height: 1.2;
  margin-bottom: 6rem;
}
@media (max-width: 1100px) {
  .appeal-wrapper .title-wrapper .canpany-name {
    font-size: 8vw;
  }
}
.appeal-wrapper .title-wrapper .border-text {
  color: #F38300;
  font-weight: 700;
  position: relative;
  font-size: 3rem;
  z-index: 1;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .appeal-wrapper .title-wrapper .border-text {
    font-size: 2.5rem;
  }
}
.appeal-wrapper .title-wrapper .border-text::before {
  content: "";
  display: block;
  height: 10px;
  width: 300px;
  background-color: #fff;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 720px) {
  .appeal-wrapper .title-wrapper .border-text::before {
    width: 280px;
  }
}
.appeal-wrapper .title-wrapper span {
  color: #F38300;
  font-size: 7vw;
}
@media (max-width: 1100px) {
  .appeal-wrapper .title-wrapper span {
    font-size: 16vw;
  }
}
.appeal-wrapper .title-wrapper .link-btn {
  display: inline-block;
  padding: 2.5rem 6rem;
  font-weight: 500;
  font-size: 2rem;
}
.appeal-wrapper .title-wrapper .link-btn .span2 {
  font-weight: 700;
  font-size: 2.2rem;
}
.appeal-wrapper .title-wrapper .link-btn .span2 span {
  font-size: 1.8rem;
  color: #fff;
}
@media (max-width: 1100px) {
  .appeal-wrapper .title-wrapper .link-btn .span2 {
    font-size: 2rem;
  }
}
.appeal-wrapper .title-wrapper .link-btn .sp_ {
  display: none;
}
@media (max-width: 720px) {
  .appeal-wrapper .title-wrapper .link-btn .sp_ {
    display: block;
  }
}
@media (max-width: 1100px) {
  .appeal-wrapper .title-wrapper .link-btn {
    font-size: 1.5rem;
    padding: 1.8rem 3rem;
  }
  .appeal-wrapper .title-wrapper .link-btn .span1 {
    display: block;
    margin-bottom: 0.8rem;
  }
}
.appeal-wrapper .title-wrapper .wrapper .appeal-tx {
  display: inline-block;
  width: 300px;
  background-color: #fff;
  color: #F38300;
  margin-top: 2rem;
  padding: 1rem 2rem;
}
.appeal-wrapper .title-wrapper .wrapper .appeal-tx:first-child {
  margin-right: 10px;
}
@media (max-width: 1100px) {
  .appeal-wrapper .title-wrapper .wrapper .appeal-tx:first-child {
    margin-right: 0;
  }
}
.appeal-wrapper .title-wrapper .wrapper .appeal-tx:last-child {
  margin-left: 10px;
}
@media (max-width: 1100px) {
  .appeal-wrapper .title-wrapper .wrapper .appeal-tx:last-child {
    margin-left: 0;
  }
}

/********appeal end******/
/********greeting start******/
.greeting-wrapper {
  text-align: center;
}
@media (max-width: 1100px) {
  .greeting-wrapper {
    position: relative;
  }
}
.greeting-wrapper .flex-wrapper {
  align-items: end;
}
@media (max-width: 1100px) {
  .greeting-wrapper .flex-wrapper {
    align-items: center;
  }
}
.greeting-wrapper img {
  width: 200px;
  height: auto;
}
@media (max-width: 1100px) {
  .greeting-wrapper img {
    position: absolute;
    bottom: -100px;
    -webkit-clip-path: inset(0 0 50% 0);
    clip-path: inset(0 0 50% 0); /**クリッピングマスク**/
  }
}
@media (max-width: 1100px) {
  .greeting-wrapper .positoin-left {
    left: 48%;
  }
  .greeting-wrapper .positoin-right {
    right: 48%;
  }
}
.greeting-wrapper .text-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
.greeting-wrapper .text-wrapper .tx {
  line-height: 2.1;
  font-weight: 500;
}
.greeting-wrapper .link-btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 0 auto 3rem auto;
}

/********greeting end******/
/********about start******/
.about-wrapper {
  background-color: #FFF8EC;
}
.about-wrapper .text-wrapper {
  margin: 0 auto;
  text-align: center;
  max-width: 720px;
  margin-bottom: 7rem;
}
.about-wrapper .flex-wrapper {
  max-width: 1100px;
}
.about-wrapper .flex-wrapper img {
  max-width: 49%;
  height: auto;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1100px) {
  .about-wrapper .flex-wrapper img {
    width: 100%;
    max-width: 700px;
    margin-bottom: 1.8rem;
  }
}

/********about end******/
/********stepup start******/
.stepup-wrapper {
  background-color: #FFF8EC;
}
.stepup-wrapper .text-wrapper {
  margin: 0 auto;
  text-align: center;
  max-width: 720px;
}
.stepup-wrapper .step-column {
  width: calc(33% - 25px);
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .stepup-wrapper .step-column {
    width: 100%;
    max-width: 320px;
    margin-bottom: 5rem;
  }
  .stepup-wrapper .step-column:last-child {
    margin-bottom: 0;
  }
}
.stepup-wrapper .step-column img {
  width: 100%;
  height: auto;
}
.stepup-wrapper .step-column .column-title {
  color: #F38300;
  text-align: center;
  margin-bottom: 1.5rem;
}
.stepup-wrapper .step-column .tx {
  text-align: left;
  font-size: 1.8rem;
}

/********stepup end******/
/********howto start******/
.howto-wrapper {
  background-color: #fff;
}
.howto-wrapper .section {
  padding: 10rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.howto-wrapper .section .text-wrapper {
  margin: 0 auto;
  text-align: center;
  max-width: 720px;
  margin-bottom: 7rem;
}
.howto-wrapper .section .howto-section {
  width: 100%;
  max-width: 1100px;
}
.howto-wrapper .section .howto-section h3 {
  text-align: center;
  position: relative;
  font-size: 2.3rem;
  z-index: 1;
  margin-bottom: 6rem;
}
.howto-wrapper .section .howto-section h3::before {
  content: "";
  height: 16px;
  width: 280px;
  background-color: #F38300;
  opacity: 0.5;
  z-index: -1;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.howto-wrapper .section .howto-section .step-column {
  text-align: center;
  position: relative;
  margin-bottom: 10rem;
}
.howto-wrapper .section .howto-section .step-column h4 {
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #F38300;
}
.howto-wrapper .section .howto-section .step-column h4::after {
  content: "";
  width: 145px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 3px solid #F38300;
  border-radius: 5px;
}
.howto-wrapper .section .howto-section .step-column p {
  font-weight: 700;
}
.howto-wrapper .section .howto-section .step-column img {
  width: 300px;
  height: auto;
  position: absolute;
  top: 15px;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.howto-wrapper .section .howto-section .step-column img.positoin-left {
  left: -160px;
}
.howto-wrapper .section .howto-section .step-column img.positoin-right {
  right: -160px;
}
.howto-wrapper .section .howto-section .rusk-img {
  width: 70%;
  margin: 0 auto;
}
.howto-wrapper .section .howto-section .rusk-img img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) {
  .howto-wrapper .section .howto-section .step-column {
    margin-bottom: 5rem;
  }
  .howto-wrapper .section .howto-section .step-column p {
    margin-bottom: 1.2rem;
  }
  .howto-wrapper .section .howto-section .step-column img {
    position: static;
  }
}

/********howto end******/
/********info01 start******/
.info1-wrapper {
  background-color: #FFF8EC;
}
.info1-wrapper #info1 {
  padding-bottom: 0;
}
.info1-wrapper .text-wrapper {
  text-align: center;
}
.info1-wrapper .text-wrapper .tx-01 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 1100px) {
  .info1-wrapper .text-wrapper .tx-01 {
    font-size: 2rem;
  }
}
.info1-wrapper .time-img {
  width: 100%;
  margin: 6rem auto;
  text-align: center;
}
.info1-wrapper .time-img img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/********info01 end******/
/********event start******/
.event-wrapper .text-wrapper {
  text-align: center;
}
.event-wrapper .text-wrapper .tx {
  margin-bottom: 13rem;
}
@media (max-width: 1100px) {
  .event-wrapper .text-wrapper .tx {
    margin-bottom: 4rem;
  }
}
.event-wrapper .flex-wrapper {
  justify-content: space-around;
}
.event-wrapper .event-item {
  text-align: center;
}
.event-wrapper .event-item p {
  margin-bottom: 2rem;
}
@media (max-width: 1100px) {
  .event-wrapper .event-item {
    margin-bottom: 3rem;
  }
  .event-wrapper .event-item:last-child {
    margin-bottom: 0;
  }
}

/********event end******/
/********info2 start******/
.info2-wrapper {
  background-color: #FFF8EC;
}
.info2-wrapper .text-wrapper {
  text-align: center;
}
.info2-wrapper .table-section {
  margin: 20px auto;
  width: 100%;
  border-collapse: collapse;
  /* Google Mapを囲う要素 */
}
.info2-wrapper .table-section th {
  background-color: #F38300;
  border: 2px solid #F38300;
  color: #fff;
  width: 20%;
  padding: 15px;
}
.info2-wrapper .table-section td {
  background-color: #fff;
  border: 2px solid #F38300;
  width: 80%;
  padding: 15px 4rem 15px 4rem;
}
.info2-wrapper .table-section td .tel-num {
  -webkit-text-decoration: underline solid 1px #413B32;
          text-decoration: underline solid 1px #413B32;
}
.info2-wrapper .table-section td .tel-num:hover {
  -webkit-text-decoration: underline solid 1px #fff;
          text-decoration: underline solid 1px #fff;
}
@media (max-width: 1100px) {
  .info2-wrapper .table-section th, .info2-wrapper .table-section td {
    display: block;
    margin: 0 auto;
    width: 85%;
  }
  .info2-wrapper .table-section .flex-wrapper {
    align-items: normal;
  }
}
@media (max-width: 600px) {
  .info2-wrapper .table-section th, .info2-wrapper .table-section td {
    width: 100%;
  }
}
.info2-wrapper .table-section .text-wrapper {
  text-align: left;
}
.info2-wrapper .table-section .text-wrapper .item {
  margin-bottom: 1.8rem;
}
@media (max-width: 720px) {
  .info2-wrapper .table-section .text-wrapper .item .tx {
    font-size: 1.6rem;
  }
}
.info2-wrapper .table-section .text-wrapper .store-name {
  font-weight: 700;
}
.info2-wrapper .table-section .text-wrapper .bold {
  font-weight: 700;
}
.info2-wrapper .table-section .map-wrapper {
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 65%; /* 比率を4:3に固定 */
  border: 2px solid #F38300;
}
.info2-wrapper .table-section .map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1100px) {
  .info2-wrapper .table-section .map-wrapper {
    width: 100%;
    padding-top: 75%;
  }
}

/********info2 end******/
/********message Start********/
.message-wrapper .section {
  max-width: 720px;
}
.message-wrapper .section .message-content .tx {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 720px) {
  .message-wrapper .section .message-content .tx {
    text-align: left;
  }
}

/********message End********/
/********Footer Start********/
footer {
  padding: 2rem 0;
  background-color: #F38300;
  color: #fff;
}
footer .footer-wrapper {
  text-align: center;
  margin: 0 auto;
}
footer .footer-wrapper p {
  font-size: 14px;
}

/********Footer end********/
.about-p {
  background-color: #FFF8EC;
  height: 50vh;
  background: none;
}

.more .section {
  padding: 0 20px;
  max-width: 1100px;
}
.more .section .tx {
  display: block;
  text-align: left;
  margin-top: 10rem;
}
.more .section .tx2 {
  margin-bottom: 10rem;
}

/*********about p*************/
/*********contact Start*********/
.contact-wrapper {
  width: 100%;
  text-align: center;
  background-color: #FFF8EC;
}
.contact-wrapper .tx {
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
.contact-wrapper .sns-icon:last-child {
  margin-left: 2.4rem;
}
.contact-wrapper img {
  width: 50px;
  height: auto;
}
.contact-wrapper .link-btn {
  display: block;
  max-width: 390px;
  padding: 1.8rem 0;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2.6rem;
}
@media (max-width: 1100px) {
  .contact-wrapper .link-btn {
    padding: 2rem 6rem;
    font-size: 2rem;
  }
}

/*********contact end*************/
/*********form Start*********/
.contact-form-wrapper {
  background-color: #FFF8EC;
  width: 100%;
  text-align: center;
  padding: 10rem 20px 1rem 20px;
}
.contact-form-wrapper .tx {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
.contact-form-wrapper .link-btn {
  display: inline-block;
  padding: 2rem 10rem;
  font-weight: 500;
  font-size: 2rem;
}

.form-wrapper {
  margin: 3rem auto;
  max-width: 720px;
}
.form-wrapper form .form-group {
  padding: 1.8rem;
  text-align: left;
}
.form-wrapper form .form-group button[type=submit] {
  padding: 12px 40px;
}
.form-wrapper form .form-group label, .form-wrapper form .form-group input, .form-wrapper form .form-group textarea, .form-wrapper form .form-group select {
  display: block;
  width: 100%;
}
.form-wrapper form .form-group label {
  margin-bottom: 1.2rem;
}
.form-wrapper form .form-group label .required {
  border-radius: 5px;
  background-color: #F38300;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
  margin-right: 1rem;
}
.form-wrapper form .form-group .error-message {
  color: #c73838;
}
.form-wrapper form .form-group input, .form-wrapper form .form-group textarea, .form-wrapper form .form-group select {
  padding: 1.2rem 1rem 1.2rem 1rem;
  background-color: #fff;
  border-radius: 5px;
}
.form-wrapper form .form-group input:focus, .form-wrapper form .form-group textarea:focus {
  outline: 1px solid #f76805;
}
.form-wrapper form .form-group .def {
  color: rgba(0, 0, 0, 0.356);
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.356);
}

::placeholder {
  color: rgba(0, 0, 0, 0.356);
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.356);
}

/* IE対応 */
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.356);
}

.back-wrapper {
  text-align: left;
  padding: 0 1.8rem;
  margin-bottom: 1rem;
  color: #413B32;
}

.success-main {
  height: calc(100vh - 120px);
  background-color: #FFF8EC;
}/*# sourceMappingURL=style.css.map */