@charset "UTF-8";
/* CSS Document */

/* -------------------------------------
00.共通
01.index
02.thanks
----------------------------------*/
/** ========================================
00.共通
======================================== **/
.mb50 {
  margin-bottom: 50px;
}
.fw-b {
  font-weight: bold;
}

/* btn */
.btn {
  display: block;
  width: 90%;
  max-width: 500px;
  margin: 30px auto 0;
  padding: 10px 12px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  background: var(--main-color);
}
.btn:hover {
  opacity: 0.8;
}
.btn a {
  color: #fff;
}
.btn a::after {
  content: "arrow_right_alt";
  font-family: "Material Icons";
  margin-left: 0.6em;
}
@media (min-width: 768px) {
  .btn {
    font-size: 20px;
  }
}

/* pdf */
.pdf {
  display: block;
  width: 95%;
  max-width: 500px;
  margin: 30px auto 0;
  padding: 10px 12px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  background: var(--sub-color);
}
.pdf:hover {
  opacity: 0.8;
}
.pdf+.pdf {
  margin-top: 14px;
}
.pdf a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 15px;
  text-align: left;
}
.pdf a::after{
  flex-shrink: 0;
}
.pdf a::after {
  content: "picture_as_pdf";
  font-family: "Material Icons";
  margin-left: 0.6em;
}
@media (min-width: 768px) {
  .pdf a{
    font-size: 16px;
  }
}

/* link */
.link {
  width: fit-content;
  margin: 20px auto 0;
  color: var(--main-color);
  font-size: 1.2em;
  font-weight: bold;
}
.link::after {
  content: "arrow_right_alt";
  font-family: "Material Icons";
}
.link a {
  color: var(--main-color);
  text-decoration: underline;
}
.link a:hover {
  text-decoration: none;
}

/**-----------------------------------------------
header
-----------------------------------------------**/
header {
  min-height: 70px;
}
h1.logo {
  padding: 10px 0 10px 5%;
  padding: 6px 0 14px 3%;
}
h1.logo img {
  display: block;
  height: 50px;
}

@media (min-width: 768px) {
  h1.logo {
    padding: 10px 0 10px 5%;
    padding: 6px 0 10px 3%;
  }
  h1.logo img {
    height: 80px;
  }
}

/* nav */
header nav {
  position: fixed;
  top: 0px;
  right: -320px;
  width: 320px !important;
  transition: var(--transition);
  z-index: 1499;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  background: var(--main-color);
}
header.nav-open nav {
  box-shadow: 0px 0 10px -4px #333;
}
header nav ul {
  padding: 70px 7% 0;
  font-size: 15px;
}
header nav ul li a {
  display: block;
  padding: 1em;
  color: #fff;
  line-height: 1.4;
  border-bottom: 1px dotted #fff;
}

/* hamburger */
header .hamburger {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  z-index: 3;
  z-index: 1500;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  font-size: 11px;
  cursor: pointer;
  transition: all 400ms;
  color: #fff;
  background: var(--main-color);
}
header .hamburger:after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8px;
  margin: 0 auto;
  content: "menu";
  text-align: center;
  letter-spacing: 1px;
}
header.nav-open .hamburger:after {
  content: "close";
  letter-spacing: 0;
}
header .hamburger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  right: 0;
  left: 0;
  margin: 0 auto;
}
header .hamburger span:nth-child(1) {
  top: 15px;
}
header .hamburger span:nth-child(2) {
  top: 23px;
}
header .hamburger span:nth-child(3) {
  top: 31px;
}
header.nav-open .hamburger span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
header.nav-open .hamburger span:nth-child(2) {
  display: none;
}
header.nav-open .hamburger span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/**-----------------------------------------------
footer
-----------------------------------------------**/
footer {
  padding: 30px 10% 14px;
  background-color: var(--main-color);
  position: relative;
}
footer > *,
footer a {
  font-size: 14px;
  color: #f2f2f2;
}
footer > *:not(h3) {
  font-size: 14px;
}
footer h3 {
  margin-bottom: 6px;
  padding-bottom: 0;
  font-family: "M PLUS Rounded 1c";
  font-size: 24px;
  font-weight: bold;
}
footer h3 + p {
  font-weight: bold;
}
footer p a {
  font-size: inherit;
  text-decoration: underline;
}footer p a:hover {
  text-decoration: none;
}

/**　お問い合わせ　**/
.inq dl dt {
  margin: 14px auto 6px;
}
input,
textarea {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
textarea {
  height: 100px;
}
button {
  display: block;
  width: 200px;
  margin: 20px auto 0;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 4px;
}
button:hover {
  color: var(--main-color);
  border-color: var(--main-color);
  background: rgba(255, 255, 255, 0.8);
}
footer p small {
  display: block;
  margin-top: 40px;
  padding-top: 10px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(242, 242, 242, 0.8);
}

@media (min-width: 768px) {
  footer {
    padding: 50px 10%;
  }
  footer::before {
    height: 160px;
    top: -66px;
  }
  footer h3 {
    font-size: 42px;
  }
  footer h3 + p {
    font-size: 18px;
  }

  /**　お問い合わせ　**/
  button {
    width: 400px;
    margin: 20px auto 0;
    padding: 10px 12px;
    font-size: 20px;
  }

  footer p small {
    margin-top: 60px;
    padding-top: 20px;
  }
}

/**-----------------------------------------------
スライド
-----------------------------------------------**/
.hero {
  width: 100%;
  height: 300px;
  position: relative;
}
.hero .swiper-container,
.hero .swiper-container ul.swiper-wrapper {
  width: 100%;
  height: 100%;
}
.hero ul.swiper-wrapper li.swiper-slide.slide01 {
  background: url(../img/top_slides_img01.jpg) no-repeat center / cover;
}
.hero ul.swiper-wrapper li.swiper-slide.slide02 {
  background: url(../img/top_slides_img02.jpg) no-repeat center / cover;
}
.hero ul.swiper-wrapper li.swiper-slide.slide03 {
  background: url(../img/top_slides_img03.jpg) no-repeat center / cover;
}

.hero p {
  width: 100%;
  padding: 20px 2em;
  font-size: 14px;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.hero p strong {
  display: block;
  font-size: 1.8em;
  line-height: 1.3;
}
.hero p::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--sub-color);
  opacity: 0.7;
  mix-blend-mode: multiply;
  z-index: -1;
}

@media (min-width: 768px) {
  .hero {
    width: 100%;
    height: 650px;
    position: relative;
  }
  .hero p {
    font-size: 20px;
  }
}

/** ========================================
01.index
======================================== **/

/*  sec01
------------------------*/
.sec01 {
  padding-top: 60px;
}
.sec01 ul li {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
.sec01 ul li + li {
  margin-top: 26px;
}
.sec01 ul li p {
  width: 100%;
}
.sec01 ul li span {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-size: 18px;
  border-radius: 50%;
  background: #eee;
}
.sec01 ul li p {
  width: 100%;
}
.sec01 ul li p strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--main-color);
  text-align: center;
}

@media (min-width: 768px) {
  .sec01 {
    padding-top: 100px;
  }
}

/*  sec02
------------------------*/
.sec02 .photo {
  text-align: center;
  border: 8px solid #fff;
  box-shadow: 1px 1px 5px rgba(233, 83, 119, 0.3);
}
.sec02 .photo img {
  width: 100%;
}
.sec02 .photo img.tate {
  width: auto;
  max-height: 100%;
}
.sec02 .photo img.tate.tate-20 {
  transform: translate3d(0, -20%, 0);
}
.sec02 .pc_w50 .w100p {
  width: 100%;
  margin-top: 50px;
}

/*  sec03
------------------------*/
.sec03 h2:not(:first-of-type) {
  margin-top: 50px;
}
.sec03 figure img {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .sec03 ul.pc_w50{
    align-items: stretch;
  }
  .sec03 ul.pc_w50 li {
    display: flex;
    flex-direction: column;
    width: 48.3%;
    margin: 10px auto 10px;
  }
  .sec03 ul.pc_w50 li >div{
    margin-bottom: auto;
  }
}

/*  sec04
------------------------*/
.sec04 .center {
  line-height: 2;
  text-align: center;
}
.sec04 .center strong {
  font-size: 1.3em;
  font-weight: bold;
}

/*  sec05
------------------------*/
.sec05 .t50 {
  margin-top: 50px;
}

/*  sec-rec
------------------------*/
.sec-rec h2 + p {
  margin: 20px auto 20px;
  font-size: 18px;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
}
table.rec-tbl {
  width: 100%;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.5);
}
table.rec-tbl tr:first-child {
  color: #fff;
  background: var(--sub-color);
}
table.rec-tbl,
table.rec-tbl th,
table.rec-tbl td {
  border: 1px solid #666;
}
table.rec-tbl th,
table.rec-tbl td {
  padding: 10px 0.5em;
  font-size: 14px;
  text-align: left;
}
table.rec-tbl th {
  width: 22%;
  font-weight: bold;
}
table.rec-tbl tr:first-child td {
  font-weight: bold;
}
table.rec-tbl td .sub {
  display: block;
  font-weight: bold;
}

@media (min-width: 992px) {
  .sec-rec .secInner > *:not(h2) {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  .sec-rec h2 + p {
    margin: 30px auto 20px;
    font-size: 24px;
  }
  table.rec-tbl th,
  table.rec-tbl td {
    padding: 10px 1em;
    font-size: 15px;
  }
  table.rec-tbl th {
    width: 18%;
  }
}

/** ========================================
02.確認画面
======================================== **/
.sec-confirm {
  text-align: center;
}
.sec-confirm table {
  margin-top: 30px;
}
input.cnfm-btn {
  display: block;
  width: 80%;
  max-width: 200px;
  height: 50px;
  margin: 20px auto;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background: var(--main-color);
  border: none;
  outline: none;
  position: relative;
  border-radius: 6px;
  cursor: pointer;
}

@media (min-width: 768px) {
  input.cnfm-btn {
    display: inline-block;
    width: 40%;
    max-width: 250px;
    margin: 50px 10px 0;
  }
}

/** ========================================
03.thanks
======================================== **/
.thanks .sec01 {
  padding: 80px 5%;
}
.thanks .sec01 h2 {
  font-size: 20px;
}
.thanks p {
  text-align: center;
  padding: 0 10%;
}
.thanks p.tel,
.thanks p.tel a {
  margin: 30px auto;
  font-size: 26px;
  font-weight: bold;
  color: var(--main-color);
}
.thanks footer {
  padding-bottom: 30px;
}
.thanks footer p small {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media (min-width: 768px) {
  .thanks .sec01 {
    padding: 180px 10% 200px;
  }
  .thanks .sec01 h2 {
    font-size: 42px;
  }
  .thanks p.tel,
  .thanks p.tel a {
    margin: 50px auto;
    font-size: 36px;
  }
  .thanks footer {
    padding-top: 30px;
  }
}
