@charset "UTF-8";


/*================================================
 *  一般・共通設定
 ================================================*/
:root {
  --color-white: #fefefe;
  --color-green: #7ebabd;
  --color-gray: #ececec;
  --color-dark: #4c5555;
  --color-black: #111;
  --color-pink: #dd7272;
  --en_min: "Cormorant Garamond", serif;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: var(--color-dark);
  font-family: "Zen Old Mincho", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, "Cormorant Garamond", serif;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.07em;
  font-weight: normal;
  background: var(--color-white);
  overflow-x: hidden;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.widewrap {
  max-width: 1200px;
  margin: 0 auto;
}

a {
  color: var(--color-dark);
  text-decoration: none;
}

a:hover {
  opacity: .7;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;

}

img.shadow {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

em {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin: 0;
}

ol li {
  list-style: decimal;
}

/* タイトル */
h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

h2 span {
  display: block;
  font-size: 1.3rem;
}


@media screen and (max-width:768px) {
  html {
    font-size: 59%;
  }

  .wrap,
  .widewrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}


/* ==================================================
  splash
====================================================*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
  margin-top: -120px;
}

#splash_logo {
  margin: auto;
  width: 100px;
}

@media screen and (max-width:768px) {
  #splash_logo {
    width: 70px;
  }
}

/* =======================================================
* header
* ======================================================= */
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-green);
  transition: all 0.3s;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 99;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* ナビゲーション左側 */
#g-nav.panelactive #g-nav-list .bg_list {
  height: 100vh;
  display: flex;
  width: 30%;
  background: var(--color-white);
  box-sizing: border-box;
}


#g-nav.panelactive #g-nav-list .bg_list div {
  margin: auto 40px;
  inset: 0;
}

#g-nav.panelactive #g-nav-list .bg_list h1 img {
  width: 55%;
  margin-bottom: 30px;
}

/* LINEボタン */
.lineBtn a {
  background: #06C755;
  color: #fff;
  padding: 10px;
  display: block;
  text-align: center;
  border-radius: 5px;
  width: 100%;
}

.lineBtn a span {
  display: block;
  font-size: 1.1rem;
}

.lineBtn a img {
  display: inline;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

/* インスタボタン */
.instaBtn {
  margin-top: 20px;
}

.instaBtn a {
  border: 1px solid;
  padding: 10px;
  display: block;
  text-align: center;
  border-radius: 5px;
  width: 100%;
}

.instaBtn a span {
  display: block;
  font-size: 1.1rem;
}

.instaBtn a i {
  font-size: 2rem;
  padding-right: 5px;
  vertical-align: middle;
}

/*ナビゲーション右側*/
#g-nav ul {
  display: none;
}

#g-nav.panelactive ul {
  display: block;
  width: 60%;
}

/*リストのレイアウト設定*/
#g-nav li {
  line-height: 2;
  position: relative;
  font-family: var(--en_min);
}

#g-nav li a {
  padding: 10px 0;
  display: block;
  letter-spacing: 0.1em;
  font-size: 3rem;
  color: #fff;
}

#g-nav li span {
  font-size: 1.2rem;
  margin-left: 10px;
}

#g-nav li img {
  width: 13px;
  vertical-align: super;
  margin-left: 5px;
}

#g-nav .spSns {
  display: none;
}

/*========= ボタンのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 999;
  cursor: pointer;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: 30px;
  right: 30px;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 27px;
  height: 1px;
  background: var(--color-dark);
  width: 40%;
}

.openbtn span:nth-of-type(1) {
  top: 23px;
}

.openbtn span:nth-of-type(2) {
  top: 31px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn span:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--color-dark);
  font-size: 1rem;
  letter-spacing: .2em;
}

.openbtn.active span:nth-of-type(1) {
  top: 22px;
  left: 26px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 34px;
  left: 26px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
  background: #fff;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "CLOSE";
  transform: translateY(0) rotate(-45deg);
  top: 11px;
  left: 20px;
  color: #fff;
}

@media screen and (max-width:768px) {
  #g-nav.panelactive #g-nav-list .bg_list {
    display: none;
  }

  #g-nav.panelactive ul {
    width: 100%;
    padding-top: 50px;
    text-align: center;
  }

  #g-nav li {
    padding-left: 0;
  }

  #g-nav li a {
    font-size: 2rem;
    line-height: 1.6;
  }

  #g-nav li::before {
    content: none;
  }

  #g-nav li span {
    font-size: 1rem;
    margin-left: 0;
    display: block;
  }

  #g-nav .spSns {
    display: block;
    width: 100%;
  }

  /* LINEボタン */
  .spSns .lineBtn {
    width: 90%;
    margin: 0 auto;
  }

  /* Instagramボタン */
  .spSns .instaBtn {
    background: #fff;
    border-radius: 5px;
    width: 90%;
    margin: 20px auto;
  }

  .spSns .instaBtn a {
    border: none;
  }

  /* ボタン */
  .openbtn {
    width: 70px;
    height: 70px;
    top: 15px;
    right: 15px
  }

  .openbtn span {
    left: 21px;
  }

  .openbtn span:nth-of-type(1) {
    top: 17px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 29px;
  }

  /* OPEN */
  .openbtn span:nth-of-type(3)::after {
    top: 5px;
    left: -4px;
  }

  /* CLOSE */
  .openbtn.active span:nth-of-type(1) {
    left: 19px;
    top: 16px;
  }

  .openbtn.active span:nth-of-type(3) {
    left: 20px;
    top: 27px;
  }

  .openbtn.active span:nth-of-type(3)::after {
    top: 5px;
    left: 11px;
  }
}


/* =======================================================
* section・ボタン
* ======================================================= */
section {
  padding-bottom: 10rem;
}

.section {
  padding-top: 10rem;
}

/* linkBtn */
.linkBtn {
  margin-top: 60px;
}

.linkBtn a span {
  font-family: var(--en_min);
  text-transform: uppercase;
  font-size: 1.5rem;
  border-bottom: 1px solid;
  padding: 0 20px 5px;
}

.linkBtn a:hover {
  color: var(--color-green);
  opacity: 1;
}

.linkBtn a i {
  padding-right: 3px;
  font-size: 1.2rem;
}

.linkBtn a small {
  font-size: 1rem;
  display: block;
}

.linkBtn_white a {
  color: var(--color-white);
}

.linkBtn_white a:hover {
  color: var(--color-dark);
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 7rem;
  }

  .section {
    padding-top: 7rem;
  }
}

/* =======================================================
* main
* ======================================================= */
#main {
  margin: 15px 30px;
  position: relative;
}

#main h1 {
  position: absolute;
  top: -155px;
  left: 50%;
  transform: translate(-50%);
  background: #fefefe;
  border-radius: 50%;
  z-index: 2;
}

#main h1 img {
  width: 280px;
  padding: 60px
}

.main_catch {
  position: absolute;
  bottom: -70px;
  left: -20px;
  z-index: 2;
  font-size: 10rem;
  text-transform: uppercase;
}

.mainVis {
  background: url(../images/main.jpg) no-repeat center top/cover;
  height: 80vh;
  margin-top: 120px;
}

@media screen and (max-width:768px) {
  #main {
    margin: 10px 15px
  }

  #main h1 {
    top: -130px;
  }

  #main h1 img {
    padding: 38px;
    width: 160px;
  }

  .main_catch {
    bottom: -10px;
    left: 0px;
    font-size: 6rem;
    line-height: 1.2;
  }

  .mainVis {
    background-position: center right 30%;
    height: 75vh;
  }
}

/*================================================
 *  intro
 ================================================*/
#intro {
  margin-top: 8rem;
  padding-bottom: 0;
}

.intro_txt {
  width: 50%;
  padding: 30px 0;
  line-height: 2.3;
}
.intro_txt strong {
  background: linear-gradient(transparent 70%, rgb(126 186 189 / 80%) 70%);
}
.intro_img {
  width: 45%;
  position: relative;
}

.intro_img .intro_img__left {
  position: absolute;
  width: 270px;
  margin-top: 80px;
}

.intro_img .intro_img__right {
  position: absolute;
  top: -90px;
  right: 20px;
  z-index: -1;
  width: 300px;
}

@media screen and (max-width:768px) {
  #intro {
    margin-top: 0;
  }

  #intro .intro_txt {
    width: 100%;
    margin-top: 0px;
    padding: 0;
  }

  .intro_img {
    width: 100%;
    height: 60vh;
  }

  .intro_img .intro_img__left {
    width: 50%;
    margin-top: 110px;
  }

  .intro_img .intro_img__right {
    right: 0;
    width: 53%;
    top: 50px;
  }

  #intro .linkBtn {
    margin: 0 auto;
  }
}


/*================================================
 *  t_service
 ================================================*/
#t_service {
  margin: 15rem 3rem 0;
  padding-top: 7rem;
  position: relative;
  background: url(../images/bg_service.png) no-repeat center/cover;
  color: var(--color-black);
}

#t_service .flex {
  margin-top: 30px;
}

#t_service p {
  margin-bottom: 15px;
  line-height: 2.3;
}

#t_service .flex .w48 img {
  width: 60%;
}


@media screen and (max-width:768px) {
  #t_service {
    padding-top: 5rem;
    margin: 7rem 1rem 0;
    background: url(../images/bg_service-sp.png) no-repeat center/cover;
  }

  #t_service h2 {
    text-align: left;
    font-size: 1.7rem;
  }

  #t_service .flex {
    margin-top: 0px;
    font-size: 1.5rem;
  }

  #t_service p {
    margin-bottom: 10px;
    line-height: 2;
  }

  #t_service .flex .w48 img {
    width: 70%;
    margin: 0px 0 30px;
  }

  #t_service .linkBtn {
    margin-top: 20px;
  }
}


/*================================================
 *  sub_bg
 ================================================*/
#main.sub_main h1 {
  top: -140px;
}

.sub_bg {
  height: 60vh;
  margin-top: 120px;
  position: relative;
}

.sub_bg div {
  position: absolute;
  bottom: -60px;
  left: -20px;
  text-transform: uppercase;
  font-size: 8rem;
  letter-spacing: .1em;
  color: #333;
}

@media screen and (max-width:768px) {
  .sub_bg {
    height: 40vh;
  }

  .sub_bg div {
    bottom: -30px;
    left: -10px;
    font-size: 5rem;
  }
}


/*================================================
 *  footer
 ================================================*/
footer {
  border-top: 1px solid #d7d7d7;
  padding-top: 10rem;
  margin: 3rem 3rem 10rem;
}

footer .wrap {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1.5fr 1fr;
}

.footer_logo {
  width: 45%;
}

.footer_menu {
  text-transform: uppercase;
  line-height: 3;
  font-size: 1.2rem;
  letter-spacing: .15em;
}

.footer_menu sup img {
  width: 10px;
  vertical-align: super;
  margin-left: 3px;
}

.footer_line a {
  background: #06C755;
  padding: 30px 0;
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

.footer_line a span {
  display: block;
  font-size: 1.1rem;
}

.footer_line a img {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
}

@media screen and (max-width:768px) {
  footer {
    padding-top: 5rem;
    margin: 2rem 2rem 6rem;
    position: relative;
  }

  footer .wrap {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer_logo {
    width: 65%;
    margin: 0;
  }

  .footer_menu {
    margin-bottom: 30px;
  }

  .footer_line {
    position: absolute;
    width: 90%;
    bottom: -170px;
    left: auto;
    right: auto;
  }

  .footer_line a {
    padding: 15px 0;
    font-size: 1.3rem;
  }

  .copyright {
    margin-bottom: 50px;
  }
}

/*================================================
 *  pagetop
 ================================================*/
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 10px;
  cursor: pointer;
}