@charset "UTF-8";
/* CSS Document */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.8em;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}

main {
  position: relative;
  top: -5px;
}
main h1 {
  font-size: 3.5rem;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: 0.2s ease;
}

a:hover {
  color: #FF9100;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

svg {
  vertical-align: middle;
  transition: 0.5s ease;
}

h1, h2 {
  font-family: "MPLUSRounded1c", sans-serif;
  transform: rotateZ(0.03deg);
  line-height: 1.15;
}

.container {
  width: 1000px;
  padding: 50px 0;
  margin: 0 auto;
  text-align: left;
}

.btnBox {
  text-align: center;
  padding: 30px 0 0;
}
.btnBox .btn {
  display: inline-block;
  border: 3px solid #FF9100;
  padding: 10px 50px;
  background-color: #FF9100;
  color: #ffffff;
  transition: all 0.5s ease;
  font-weight: bold;
  vertical-align: middle;
  position: relative;
}
.btnBox .btn svg {
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: -8px;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}
.btnBox .btn:hover {
  background-color: #ffffff;
  color: #FF9100;
}
.btnBox .btn:hover svg {
  stroke: #FF9100;
}

.telnum {
  text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 90px;
  }
  main h1 {
    font-size: 2.5rem;
  }
  .container {
    width: 90%;
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) {
  .telnum {
    pointer-events: none;
  }
}
/* CSS Document */
/*ヘッダーメニューの背景色当てるクラス*/
.bgPink {
  background-color: #FF7F96;
}

.bgBlue {
  background-color: #5AB5E4;
}

.bgYellow {
  background-color: #F5A446;
}

.bgGray {
  background-color: #A3A196;
}

.bgOrange {
  background-color: #FF9100;
}

.bgLemon {
  background-color: #F8DD29;
}

/*黄色い下線をつけるクラス*/
.undLine {
  display: inline;
  background-image: linear-gradient(transparent 60%, #FFFEC4 0%);
}

/* CSS Document */
header {
  background-color: #ffffff;
  text-align: left;
}
header .container {
  width: 100%;
  padding: 20px 70px 0;
}
header .topMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headerLogo {
  width: 400px;
}
header .textBox {
  text-align: right;
}
header .textBox p {
  font-family: "MPLUSRounded1c";
  font-size: 2.6rem;
  font-weight: bold;
  color: #A16B00;
  margin-bottom: 20px;
}
header .textBox img {
  width: 60%;
}
header ul {
  display: table;
  width: 100%;
  margin: 30px auto 0;
  border-spacing: 3px 0;
}
header ul li {
  display: table-cell;
  width: 20%;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px 10px 0 0;
  transform: translateY(15px);
  transition: 0.2s ease;
}
header ul a {
  display: block;
  width: 100%;
  padding: 15px 15px 25px 15px;
  color: #ffffff;
  font-family: "MPLUSRounded1c", sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.5em;
}
header ul a:hover {
  color: #ffffff;
}
header ul li:hover {
  transform: translateY(8px);
  transition: 0.2s ease;
}

/*SP幅の場合のみ表示されるヘッダーの中身*/
.onlySP {
  display: none;
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  z-index: 10;
}
.onlySP .headerLogo {
  width: 270px;
}
.onlySP .spMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*アイコン2つ*/
#open, #close {
  cursor: pointer;
  user-select: none;
}

/*ハンバーガーアイコン押したら表示されるメニュー*/
#overlay {
  display: none;
  width: 100%;
  height: 100%;
  padding: 25px 10px;
  position: fixed;
  top: 0;
  left: 0;
  user-select: none;
  background: rgba(255, 255, 255, 0.95);
  z-index: 50;
  /*ホバー時の文字色をタブの背景色と合わせる*/
}
#overlay #close {
  /* バツのアイコンを右上に配置 */
  display: block;
  margin-right: 0;
  margin-left: auto;
}
#overlay ul {
  margin-top: 20px;
}
#overlay a {
  display: inline-block;
  padding: 10px 15px;
  font-weight: bold;
  animation: fadein 1s;
}
#overlay li:nth-child(1) a:hover {
  color: #FF7F96;
}
#overlay li:nth-child(2) a:hover {
  color: #5AB5E4;
}
#overlay li:nth-child(3) a:hover {
  color: #F5A446;
}
#overlay li:nth-child(4) a:hover {
  color: #A3A196;
}
#overlay li:nth-child(5) a:hover {
  color: #FF9100;
}
@keyframes fadein {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#overlay .textBox {
  width: 90%;
  margin: 60px auto 0;
}
#overlay .textBox p {
  margin-bottom: 20px;
  font-family: "MPLUSRounded1c";
  font-size: 1.8rem;
  font-weight: bold;
  color: #A16B00;
  animation: fadein 1s;
}
#overlay .textBox a {
  display: block;
  padding: 0;
  text-align: center;
  animation: fadein 1s;
}

/* overlayが表示されるクラス */
#overlay.active {
  display: block;
}

/* ------------------------------------------
右に固定で出てくるリンク先タブ
------------------------------------------ */
#side {
  position: fixed;
  right: 0;
  top: 300px;
  z-index: 2;
  opacity: 0;
  transform: translateX(250px);
}
#side a {
  display: block;
  border: 6px solid #FFB34E;
  border-radius: 10px;
  padding: 30px 15px;
  writing-mode: vertical-lr;
  color: #FFFFFF;
  background-color: #FF9100;
  font-weight: bold;
}
#side a:hover {
  background: #ff7100;
  transition: all 0.2s;
}
#side img {
  width: 40%;
  position: relative;
  top: -30px;
  right: 20px;
  transition: 0.2s ease;
}
#side a:hover + img {
  transform: rotate(-15deg);
  transition: 0.2s ease;
}

/*　左の動き　*/
#side.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(250px);
  }
  to {
    opacity: 1;
    transform: translateX(135px);
  }
}
/*　右の動き　*/
#side.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(135px);
  }
  to {
    opacity: 1;
    transform: translateX(250px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  header .container {
    width: 100%;
    padding: 20px 30px 0;
  }
  header .headerLogo {
    width: 300px;
  }
  header .textBox {
    text-align: right;
  }
  header .textBox p {
    font-family: "MPLUSRounded1c";
    font-size: 2rem;
    margin-bottom: 10px;
  }
  header .textBox img {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  header .container {
    display: none;
  }
  header .onlySP {
    display: block;
  }
  #side a {
    padding: 20px 15px;
  }
}
/* CSS Document */
/* TOPに戻るのアイコン */
#scrollTop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  font-size: 50px;
}

footer .container {
  padding: 30px 0;
}
footer .topArea {
  background-image: url("../img/footer_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer .topArea .footerLogo {
  width: 30%;
}
footer .topArea .flexBox {
  width: 90%;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
footer .topArea .info {
  width: 50%;
}
footer .topArea .info h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
footer .topArea .info dl {
  display: table;
  width: 100%;
}
footer .topArea .info dl:nth-of-type(1),
footer .topArea .info dl:nth-of-type(2) {
  margin-bottom: 10px;
}
footer .topArea .info dt {
  display: table-cell;
  width: 30%;
  vertical-align: top;
}
footer .topArea .info dd {
  display: table-cell;
  width: 70%;
  vertical-align: top;
}
footer .topArea .footerMenu {
  font-weight: bold;
}
footer .buttomArea {
  background-color: #7DBD5E;
}
footer .buttomArea .container {
  padding: 15px 0px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
}
footer .buttomArea ul {
  display: flex;
}
footer .buttomArea ul li {
  margin-right: 30px;
}
footer .buttomArea ul a {
  color: #ffffff;
}
footer .buttomArea ul a:hover {
  color: #A16B00;
}
footer .buttomArea p {
  font-weight: bold;
}
footer #telnum {
  text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  footer .topArea .container {
    padding-bottom: 20px;
  }
  footer .topArea .footerLogo {
    width: 40%;
  }
  footer .topArea .flexBox {
    width: 100%;
    margin: 0 auto;
  }
  footer .topArea .info dl {
    display: flex;
    flex-direction: column;
  }
  footer .topArea .info dt, footer .topArea .info dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #scrollTop {
    display: none;
  }
  footer .topArea .container {
    padding-bottom: 20px;
  }
  footer .topArea .footerLogo {
    width: 200px;
  }
  footer .topArea .flexBox {
    width: 100%;
    margin-top: 25px;
    flex-direction: column;
    gap: 0;
  }
  footer .topArea .info {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .topArea .info dl {
    display: flex;
    flex-direction: column;
  }
  footer .topArea .info dt, footer .topArea .info dd {
    width: 100%;
  }
  footer .topArea .footerMenu {
    width: 100%;
  }
  footer .buttomArea .container {
    flex-direction: column;
  }
  footer .buttomArea ul {
    display: flex;
    margin-bottom: 10px;
  }
  footer .buttomArea ul li {
    margin-right: 30px;
  }
}
section {
  background-color: #FFFEE1;
}

#side {
  display: none;
}

main h1 {
  color: #FF9100;
}

#topVisual {
  background-color: #ffff3b;
}
#topVisual .titleBox {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#topVisual .titleBox img {
  width: 100px;
  margin-bottom: 10px;
}
#topVisual .titleBox h1 {
  font-size: 4.5rem;
  margin-bottom: 0;
  text-align: center;
}

#tel .container {
  padding-bottom: 0;
}
#tel a {
  margin: 30px 0;
}
#tel a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

#form dl {
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 60px;
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 40px 0;
}
#form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #DDD;
}
#form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #DDD;
}
#form input[type=tel], #form input[type=text], #form input[type=email], #form input[type=date] {
  height: 45px;
  font-size: 16px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  background-color: #FFF;
}
#form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFF;
  color: #000;
}
#form select {
  height: 40px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  background-color: #FFF;
}
#form input, #form select {
  vertical-align: middle;
  border-radius: 5px;
}
#form .clearfix {
  border-radius: 10px;
}
#form .boxW100 input, #form .boxW100 textarea, #form .boxW100 select {
  width: 100%;
  box-sizing: border-box;
}
#form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
#form .boxW50 input,
#form .boxW50 select {
  width: 49%;
  box-sizing: border-box;
}
#form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
#form .boxW20 span {
  padding-left: 10px;
}
#form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
#form .must {
  display: inline-block;
  background-color: #FF0000;
  font-size: 10px;
  line-height: 1.5em;
  color: #FFF;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}
#form #image-btn {
  padding: 10px 20px;
  text-align: center;
  font-weight: 700;
  border-radius: 5px;
  display: block;
  margin-top: 20px;
}
#form #image-btn input {
  min-width: 200px;
  height: 70px;
  border: 1px solid #FF9100;
  padding: 0 30px;
  margin: 0 auto;
  background-color: #FF9100;
  color: #FFF;
  display: inline-block;
  cursor: pointer;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.5s ease;
}
#form #image-btn input:hover {
  background-color: #ffffff;
  color: #FF9100;
}
@media screen and (max-width: 767px) {
  #form dl {
    display: block;
    margin: 25px auto;
    padding: 25px;
  }
  #form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  #form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  #form select {
    font-size: 1.4rem;
  }
}

.formBtn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.formBtn input {
  background-color: #715628;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin: 0 10px;
  color: #FFF;
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #715628;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  #topVisual .titleBox {
    width: 100%;
  }
  #topVisual .titleBox h1 {
    font-size: 3rem;
  }
  #tel a img {
    max-width: 300px;
  }
  .sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #tel a {
    pointer-events: none;
  }
  .brSP {
    display: none;
  }
}/*# sourceMappingURL=contact.css.map */