@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --color-primary: #3fb160;

  --noto: "Noto Sans JP", sans-serif;
  --fs18: 1.8rem;
  --fs20: 2rem;
  --fs22: 2.2rem;
  --fs25: 2.5rem;
  --fs28: 2.8rem;
}

@media screen and (max-width: 767px) {
  :root {
    --fs18: 1.4rem;
    --fs20: 1.4rem;
    --fs22: 1.6rem;
    --fs25: 2rem;
    --fs28: 2.6rem;
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  font-size: clamp(1px, 0.52083333vw, 10px);
  font-family: var(--noto);
  background: var(--color-white);
  color: var(--color-black);
  /* scroll-behavior: smooth; */
}

body {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.7;
}

body * {
  letter-spacing: 0.05em;
}

.wrap {
  width: 116.2rem;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

@media screen and (max-width: 767px) {
  html {
    /* 375px>> 10px */
    font-size: 2.66666vw;
  }

  body {
    font-weight: 500;
    font-size: 2rem;
  }

  .wrap {
    width: 92%;
    padding: 0;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 7rem;
}

.section {
  padding-top: 7rem;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon.icon_mail {
  background-image: url(../images/icon_mail.png);
  width: 4rem;
  height: 3rem;
}

@media screen and (max-width: 767px) {
  .icon.icon_mail {
    width: 3rem;
    height: 2.2rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav_inner {
  /* width: 183rem;
  margin: 0 auto; */
}

.nav_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary);
  padding: 1.5rem 3rem 1rem;
}

.nav_top h1 {
  width: 60rem;
}

.nav_contact {
  width: 41rem;
}

.nav_contact a {
  width: 100%;
  height: 7rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--color-white);
  border-radius: 10000px;
  background: #fbb03b;
  background: linear-gradient(
    90deg,
    rgba(251, 176, 59, 1) 0%,
    rgba(236, 108, 0, 1) 100%
  );
}

.nav_under {
  padding: 2.2rem 0;
  background: var(--color-white);
}

.nav_under ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.nav_under ul li {
  padding: 0 2.6rem;
  border-right: 1px solid;
}

.nav_under ul li:last-child {
  border: none;
}

@media screen and (max-width: 767px) {
  .nav_top {
    padding: 1.5rem 1rem 1rem;
  }

  .nav_top h1 {
    width: 28rem;
  }

  .nav_contact {
    display: none;
    width: 100%;
  }

  .nav_contact a {
    height: 5rem;
  }

  .nav_under {
    padding: 0;
  }

  .hamburger {
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    z-index: 300;
    transition: all 0.1s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 0.15rem;
    background-color: var(--color-white);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 30%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 70%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    transition: all 0.3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 6rem 3rem;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  nav.gnav.global__nav ul {
    display: block;
    text-align: center;
    position: relative;
  }

  .nav_under ul li {
    margin-top: 3rem;
    color: var(--color-white);
    border: none;
    border-bottom: 2px dotted rgb(255 255 255 / 30%);
    padding-bottom: 2rem;
  }
}

/*================================================
 *  banner
 ================================================*/
#fixBtn {
  position: fixed;
  left: 0;
  bottom: 1rem;
  z-index: 1;
  width: 100%;
  display: none;
}

#fixBtn .nav_contact {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #fixBtn {
    display: block;
  }

  #fixBtn .nav_contact {
    display: block;
    width: 90%;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  background: var(--color-primary);
  padding: 10rem 0 5rem;
  color: var(--color-white);
}

.ft_logo {
  width: 19rem;
  margin: 0 auto 6rem;
}

.ft_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.ft_menu li {
  position: relative;
  padding-left: 2rem;
  font-size: var(--fs20);
}

.ft_menu li::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/ft_arrow.png);
  width: 1rem;
  height: 1.6rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.ft_copy {
  text-align: center;
  font-size: 1.7rem;
  padding: 3rem 0 0;
  width: 170rem;
  margin: 4rem auto 0;
  border-top: 1px solid var(--color-white);
  font-weight: 400;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .ft_menu {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    width: 26.5rem;
    margin: 0 auto;
  }

  .ft_copy {
    font-size: 1.2rem;
    width: 34.5rem;
    margin: 4rem auto;
  }
}

/*================================================
* subVisual
================================================*/
#subVisual {
  padding: 10rem 0 4rem;
  text-align: center;
  margin-top: 20rem;
  border-bottom: 2px solid var(--color-primary);
}

#subVisual h2 span {
  display: block;
}

#contact dl {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

#contact dl dt {
  width: 30rem;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

#contact dl dt sup {
  background: var(--color-primary);
  color: var(--color-white);
  margin-left: 1rem;
  display: inline-block;
  padding: 1rem;
}

#contact dl dd {
  width: calc(100% - 30rem);
  margin-bottom: 2rem;
}

#contact dl dd input,
#contact dl dd textarea {
  background: #f3f3f3;
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: 1.5rem 1rem;
  font-size: 2.2rem;
  font-family: var(--noto);
  color: var(--color-black);
}

#contact dl dd textarea {
  min-height: 20rem;
}

.submit input {
  display: block;
  width: 30rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  margin: 4rem auto 0;
  padding: 2rem 0;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  #subVisual {
    margin-top: 0rem;
  }

  #contact dl dt {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 2.2rem;
  }

  #contact dl dd {
    width: 100%;
    margin-bottom: 3rem;
  }
}

/*================================================
* price
================================================*/

@media screen and (max-width: 767px) {
}

/*================================================
* access
================================================*/

@media screen and (max-width: 767px) {
}

/*================================================
* price
================================================*/

@media screen and (max-width: 767px) {
}

/*================================================
* koshi
================================================*/
.image-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 17rem;
}

.image-full img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .image-full {
    padding: 5rem 0;
  }
}
