/*============================================
Base
============================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 60px;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-all;
  vertical-align: bottom;
}

a:link,
a:visited {
  text-decoration: none;
  color: #333;
}

a:hover {
  opacity: 0.5;
  transition: 500ms;
}

ul,
li {
  list-style-type: none;
}

body {
  color: #626262;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.round {
  border-radius: 10px;
}

/*============================================
Common
============================================*/
.sec {
  padding: 60px 0;
}
@media (max-width: 800px) {
  .sec {
    padding: 50px 0;
  }
}

.sec-t {
  padding: 120px 0 60px;
}
@media (max-width: 800px) {
  .sec-t {
    padding: 90px 0 30px;
  }
}

.cnt-b {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: space-around;
}

.cnt {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  flex-wrap: wrap;
}

.cnt_store {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .cnt_store {
    padding: 0px;
		max-width: 100%;
		flex-direction: row;
  }
}

@media (max-width: 541px) {
  .store_info {
    padding: 0px;
		max-width: 100%;
		max-width: 1000px;
		flex-direction: row;
  }

	.cnt-b {
		width: 100%;
		max-width: 1000px;
		padding: 0;
		margin: 0 auto;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-content: space-around;
	}
}

.cnt-l {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  flex-wrap: wrap;
}

.flex-x {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 10px;
}

.flex-y {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  align-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
}

/*============================================
Text
============================================*/
.t-icon {
  font-size: 0.7em;
  font-weight: bold;
}

.t-icon::after {
  content: "";
  display: inline-block;
  width: 41px;
  height: 17px;
  background-image: url("../images/t_icon.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 5px;
  margin-bottom: -2px;
}
@media (max-width: 800px) {
  .t-icon::after {
  }
}

.t1 {
  font-size: 35px;
  font-weight: bold;
  padding: 0 0 20px;
}
@media (max-width: 800px) {
  .t1 {
    font-size: 6vw;
    padding: 0 0 10px;
  }
}

.t2 {
  font-size: 25px;
  font-weight: bold;
  padding: 0 0 30px;
}
@media (max-width: 800px) {
  .t2 {
    font-size: 5vw;
    padding: 0 0 20px;
  }
}

.t3 {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 800px) {
  .t3 {
    font-size: 4.5vw;
  }
}

.p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 100;
  padding: 0 0 30px;
}
@media (max-width: 800px) {
  .p {
    font-size: 4vw;
    padding: 0 0 20px;
  }
}

.p-commercial {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 100;
  padding: 0 0 50px;
  align-self: flex-start;
}
@media (max-width: 800px) {
  .p-commercial {
    font-size: 4vw;
    padding: 0 0 30px;
  }
}

.t-nmb {
  color: rgb(196, 215, 0);
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 800px) {
  .t-nmb {
    font-size: 15px;
  }
}

/*============================================
Button
============================================*/
.btn,
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c4d700;
  width: 300px;
  line-height: 60px;
  border-radius: 49px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

a.btn-white {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 300px;
  line-height: 60px;
  border-radius: 49px;
  text-align: center;
  color: #c4d700;
  font-weight: bold;
  transition: 0.3s;
	border: 2px solid #c4d700;
}
/*============================================
  Form
============================================*/

input::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.3); /* 黒色、透明度50% */
}

form {
  padding: 10px;
  max-width: 500px;
  width: 100%;
  font-size: 1rem;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333333;
}

label > span {
  background-color: #c4d700;
  font-size: 0.8rem;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  margin-left: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea,
select {
  font-size: 1rem;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #f7f7f9;
}

input[type="submit"] {
  width: 100%;
  background-color: #c4d700;
  color: #ffffff;
  border: none;
  padding: 20px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.3rem;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #a0b500;
}

.terms-label input[type="checkbox"] {
  vertical-align: middle;
}

@media (max-width: 800px) {
  form {
    padding: 15px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  textarea,
  select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
  }

  input[type="submit"] {
    padding: 20px;
    font-size: 18px;
  }
}

/*============================================
  Visible
============================================*/
.pc {
  display: block;
}
@media (max-width: 800px) {
  .pc {
    display: none;
  }
}

.smp {
  display: none;
}
@media (max-width: 800px) {
  .smp {
    display: block;
  }
}
