@charset "UTF-8";
:root {
  --fontfamily-sansserif:"Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --fontfamily-serif:"Noto Serif JP", serif;

  --color-pink:#cc515f;
  --color-pink50:#ed86b3;
  --color-black:#000;
  --color-grey80:#231815;
  --color-grey40:#595757;
  --color-grey20:#898989;
  --color-white:#fff;
  --color-whiteTP80:rgba(255, 255, 255, 0.85);
  --color-beige:#F6F1D6;
  --color-beige20:#eae2bd;
}

/*==============================================
global
==============================================*/
html {
  font-size: 62.5%;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  color: #231815;
  font-size: 1.8rem;
  font-family: var(--fontfamily-serif);
  font-weight: 400;
  position: relative;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  min-width: 1100px;
  font-feature-settings: "palt";
}

body.fixed {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

*:last-child {
  margin-bottom:0;
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, form, button, figure, figcaption {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: middle!important;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
  height: auto;
  image-rendering: -webkit-optimize-contrast; /*Chromeぼけ対策*/
  image-rendering: auto;
}

@media (max-width:767px) {
  body {
    min-width: initial;
    font-size: 1.4rem;
  }
}

/*==============================================
common
==============================================*/
/* ._fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
}

._fadeup--ison {
  opacity: 1;
  transform: translateY(0%);
} */

._pc {
  display: inline-block;
}

._sp {
  display: none;
}

.main {
  position: relative;
  display: block;
  /* padding-top: 90px; */
}

._section {
  padding: 0 0 100px;
}

._inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

._inner-contents {
  padding: 0 50px;
}

._tit {
  padding: 50px 0 40px;
}

._tit__inner {
  display: inline-block;
  border: 1px solid var(--color-grey80);
  background: var(--color-white);
  padding: .25em 1em;
  border-radius: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: var(--fontfamily-sansserif);
}

@media (max-width:767px) {
  ._pc {
    display: none;
  }

  ._sp {
    display: inline-block;
  }

  ._inner {
    width: 100%;
    padding: 0 20px;
  }

  ._inner-contents {
    padding: 0 0;
  }

  ._section {
    padding: 0 0 50px;
  }

  ._tit {
    padding: 25px 0 20px;
  }

  ._tit__inner {
    font-size: 1.2rem;
  }
}

/*==============================================
link
==============================================*/
a, a:visited, a img, a:visited img, button {
  transition: all .3s ease-in;
}

a:not([class]), a:not([class]):visited {
  color: var(--color-grey40);
}

a:not([class]):hover {
  text-decoration: none;
}

/*==============================================
header
==============================================*/
.header {
  background: #fff;
  padding: 15px;
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 10;
  display: none;
  box-shadow: 0 0 1em rgb(0, 0, 0, 0.1);
}

.header__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  justify-content: space-between;
  align-items: center;
}

.header__menubtn {
  display: none;
}

@media (max-width:767px) {
  .header {
    height: 60px;
    padding: 10px;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 100px auto;
    justify-content: space-between;
    padding: 0;
  }

  .header__menubtn {
    display: block;
    position: relative;
    top:0px;
    font-size: 1.4rem;
  }

  .header__menubtn a, .header__menubtn a:visited {
    background: var(--color-pink);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    padding: .5em 1em .5em 38px;
    border-radius: 2px;
    line-height: 1;
    display: block;
    transition: transform .2s;
  }

  .header__menubtn a span {
    position: absolute;
    left:15px;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: transform .2s;
  }

  .header__menubtn a span:nth-of-type(1) {
    top: 9px;
    width: 16px;
  }
  .header__menubtn a span:nth-of-type(2) {
    top: 14px;
    width: 16px;
  }

  .header__menubtn a span:nth-of-type(3) {
    top: 19px;
    width: 16px;
  }

  .header__menubtn-a--ison span:nth-of-type(1) {
    transform: translateY(5px) rotate(-45deg);
  }
  .header__menubtn-a--ison span:nth-of-type(2) {
    display: none;
  }
  .header__menubtn-a--ison span:nth-of-type(3) {
    transform: translateY(-5px) rotate(45deg);
  }
}

/*==============================================
nav
==============================================*/
.nav-pc__list {
  display: grid;
  grid-auto-flow: column;
  justify-content: flex-end;
  gap: 30px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav-pc__list-item a, .nav-pc__list-item a:visited {
  text-decoration: none;
  position: relative;
  color: var(--color-grey20);
}

.nav-pc__list-item--ison a, .nav-pc__list-item--ison a:visited {
  color: var(--color-pink);
}

.nav-sp {
  display: none;
}

@media (max-width:767px) {
  .nav-pc {
    display: none;
  }

  .nav-sp {
    background: var(--color-whiteTP80);
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100vh;

    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    z-index: -10;
    transition: opacity .2s;
  }

  .nav-sp--ison {
    opacity: 1;
    transition: opacity .2s;
    z-index: 5;
  }

  .nav-sp__list {
    display: grid;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
  }

  @media (orientation: landscape) {
    .nav-sp__list {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding-top: 50px;
    }
  }

  .nav-sp__list-item {
    text-align: center;
  }

  .nav-sp__list-item a, .nav-sp__list-item a:visited {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    padding: .2em;
    margin: 0 auto;
  }
}

/*==============================================
kv (PC)
==============================================*/
.kv {
  background: url(/assets/img/kv_img.jpg) center bottom no-repeat;
  background-size: cover;
  padding: 40px 40px 175px;
  min-height: 800px;
}

.kv__nav-pc__list {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 30px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.kv__nav-pc__list-item a, .kv__nav-pc__list-item a:visited {
  color: var(--color-white);
  text-decoration: none;
}

.kv__nav-pc__list-item a:hover {
  color: var(--color-pink);
}

.kv__copy {
  display: grid;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  padding: 80px 0 60px;
  gap: 10px;
}

.kv__copy-01 {
  font-size: 4.2rem;
  letter-spacing: 0.2em;
  color: var(--color-white);
  line-height: 1.5;
  text-indent: 1em;
  text-shadow: 2px 2px 4px var(--color-grey40);
}

.kv__copy-02 {
  font-size: 2.2rem;
  color: var(--color-pink);
}

.kv__img {
  width: 250px;
  margin: 0 auto;
}

.kv__service-ja {
  background: var(--color-pink50);
  color: var(--color-white);
  font-family: var(--fontfamily-sansserif);
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: .3em 1em;
}

.kv__service-en {
  background: var(--color-beige20);
  color: var(--color-grey40);
  font-family: var(--fontfamily-sansserif);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: .2em 1em;
}

@media (max-width:767px) {
  .kv {
    padding: 20px 20px 70px;
    height: auto;
    min-height: 1px;
  }

  .kv__nav-pc__list {
    grid-auto-flow:row;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
    text-align: center;
    font-size: 1.5rem;
  }

  .kv__copy {
    display: grid;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    padding: 40px 0 30px;
  }

  .kv__copy-01 {
    font-size: 3rem;
  }

  .kv__copy-02 {
    font-size: 1.4rem;
    color: var(--color-pink);
  }

  .kv__img {
    width: 100px;
  }

  .kv__service-ja {
    font-size: 1.6rem;
  }

  .kv__service-en {
    font-size: 1.2rem;
  }
}

/*==============================================
home
==============================================*/
.home {
  text-align: center;
  padding-top: 100px;
}

.home__tit {
  display: grid;
  justify-content: center;
  font-weight: 500;
  gap: 10px;
}

.home__tit-ja {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.home__tit-en {
  font-size: 2.2rem;
  color: var(--color-pink);
}

.home__img {
  width: 800px;
  margin:50px auto 50px;
}

.home__copy-ja {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 2em;
}

.home__copy-en {
  font-size: 1.8rem;
  color: var(--color-pink);
  font-weight: 500;
}

@media (max-width:767px) {
  .home {
    padding-top: 50px;
  }

  .home__img {
    width: 100%;
    margin: 20px auto 20px;
  }

  .home__tit-ja {
    font-size: 2.4rem;
  }

  .home__tit-en {
    font-size: 1.6rem;
  }

  .home__copy-ja {
    font-size: 1.4rem;
  }

  .home__copy-en {
    font-size: 1.4rem;
  }
}

/*==============================================
about
==============================================*/
._inner-contents--about {
  background: url(/assets/img/about_bg.png) right top no-repeat;
  background-size: 215px;
}

.about__tit-ja {
  font-size: 3.5rem;
  line-height: 1.57;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: .5em;
}

.about__copy-ja {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 90px;
}

.about__tit-en {
  font-size: 3rem;
  color: var(--color-pink);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: .75em;
}

.about__copy-en {
  color: var(--color-pink);
  font-weight: 500;
  font-size: 1.8rem;
}

@media (max-width:767px) {
  ._inner-contents--about {
    background-size: 30%;
    background-repeat: repeat-y;
    padding-right: 10%;
  }

  .about__tit-ja {
    font-size: 2.1rem;
  }

  .about__copy-ja {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .about__tit-en {
    font-size: 2.2rem;
  }

  .about__copy-en {
    font-size: 1.4rem;
  }
}

/*==============================================
work
==============================================*/
.work__list {
  display: grid;
  gap: 155px;
}

.work__list-item {
  position: relative;
}

.work__list-item-num {
  position: absolute;
  top:-30px;
  right:0;
  width: 140px;
}

.work__list-item-tit-ja {
  font-size: 3.5rem;
  line-height: 1.57;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: .5em;
}

.work__list-item-copy-ja {
  font-weight: 500;
  font-size: 1.8rem;
  padding-right: 200px;
  margin-bottom: 2.5em;
  letter-spacing: 0.1em;
}

.work__list-item-tit-en {
  font-size: 3rem;
  color: var(--color-pink);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: .5em;
}

.work__list-item-copy-en {
  color: var(--color-pink);
  margin-bottom: 2em;
}

.work__list-item-img img {
  width: 450px;
  height: auto;
}

/*even*/
.work__list-item--even {
  text-align: right;
}

.work__list-item--even .work__list-item-num {
  top:-15px;
  right:auto;
  left: 0;
}

.work__list-item--even .work__list-item-copy-ja {
  padding-left: 120px;
  padding-right: 0;
}

.work__list-item--even .work__list-item-img {
  text-align: right;
}

@media (max-width:767px) {
  .work__list {
    gap: 70px;
  }

  .work__list-item-num {
    position: relative;
    width: 60px;
    margin: 0 auto 10px;
    top:auto;
    right: auto;
  }

  .work__list-item-tit-ja {
    font-size: 2.2rem;
  }

  .work__list-item-copy-ja {
    font-size: 1.4rem;
    padding-right: 0;
    margin-bottom: 1.5em;
  }

  .work__list-item-tit-en {
    font-size: 2.2rem;
  }

  .work__list-item-copy-en {
    font-size: 1.4rem;
  }

  .work__list-item-img img {
    width: 100%;
  }

  /*even*/
  .work__list-item--even {
    text-align: left;
  }

  .work__list-item--even .work__list-item-num {
    top:auto;
    right:auto;
    left: auto;
  }

  .work__list-item--even .work__list-item-copy-ja {
    padding-left: 0;
  }
}

/*==============================================
company
==============================================*/
.company {
  background: var(--color-beige);
  font-size: 1.8rem;
  padding-bottom: 50px;
}

._tit__inner--company {
  background: none;
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 238px;
  align-items: flex-end;
  gap: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  margin-top: -50px;
}

.company__info-en {
  color: var(--color-pink);
}

.company__info-ja {
  display: grid;
  gap: 3px;
  grid-template-columns: 5em auto;
  padding:0 0 1em 1em;
  border-left: 1px solid var(--color-grey40);
}

.company__info-en {
  display: grid;
  gap: 3px;
  grid-template-columns: 11em auto;
  border-left: 1px solid var(--color-grey40);
  padding-left: 1em;
}

.company__copy-ja {
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.company__copy-en {
  color: var(--color-pink);
  font-weight: 500;
}

@media (max-width:767px) {
  .company__grid {
    grid-template-columns: auto;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .company__ph {
    width: 60%;
    margin: 0 auto;
    max-width: 300px;
  }

  .company__copy-ja {
    font-size: 1.4rem;
  }

  .company__copy-en {
    font-size: 1.4rem;
  }
}

/*==============================================
news
==============================================*/
.news {
  padding-bottom: 50px;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
  font-family: var(--fontfamily-sansserif);
  margin-bottom: 50px;
  font-size: 1.8rem;
}

.news__list-item a, .news__list-item a:visited {
  text-decoration: none;
  line-height: 1.5;
}

.news__list-item-img {
  margin-bottom: 7px;
  overflow: hidden;
  border-radius: 10px;
}

.news__list-item-date {
  color: var(--color-pink);
}

.news__list-item-tit {
  font-weight: 500;
}

.news__list-item-copy {
  display: none;
}

.news__more {
  text-align: center;
}

.news__more a, .news__more a:visited {
  display: inline-block;
  background: var(--color-pink);
  text-decoration: none;
  color: var(--color-white);
  padding: .5em 2em;
  border-radius: 5px;
}

@media (max-width:767px) {
  .news__list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 1.4rem;
  }
}

/*==============================================
contact
==============================================*/
.contact {
  background: #fff url(/assets/img/contact_img.jpg) no-repeat center bottom;
  background-size: cover;
  padding-bottom: 0;
}

.contact__tit {
  display: grid;
  justify-content: center;
  margin-top: -20px;
  text-align: center;
  gap: 5px;
}

.contact__tit-ja {
  font-size: 3.6rem;
  letter-spacing: 0.18em;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.5;
}

.contact__tit-en {
  color: var(--color-pink);
  font-weight: 500;
  font-size: 2.2rem;
}

.contact__arrow {
  width: 27px;
  margin: 15px auto;
}

.contact__btn {
  text-align: center;
}

.contact__btn a, .contact__btn a:visited {
  background: var(--color-whiteTP80);
  color: var(--color-black);
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size:5.7rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 5px 70px;
  display: inline-block;
  box-shadow: 0 0 .2em rgba(0, 0, 0, 0.5);
}

.contact__btn a:hover {
  background: var(--color-white);
}

.contact__or {
  font-weight: 700;
  font-family: var(--fontfamily-sansserif);
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin: .5em 0 .25em;
  text-align: center;
}

.contact__mail {
  text-align: center;
}

.contact__mail a,  .contact__mail a:visited {
  text-decoration: none;
  color: var(--color-black);
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.contact__logo {
  width: 135px;
  margin: 0 auto;
  padding: 80px 0 80px;
}

.contact__copyright {
  position: absolute;
  left:0;
  bottom:40px;
  font-size: 1.2rem;
  color: var(--color-white);
  font-family: var(--fontfamily-sansserif);
}

@media (max-width:767px) {
  .contact__tit {
    margin-top: 0;
  }

  .contact__tit-ja {
    font-size: 2.4rem;
  }

  .contact__tit-en {
    font-size: 1.4rem;
  }

  .contact__btn a, .contact__btn a:visited {
    font-size: 2rem;
  }

  .contact__mail a,  .contact__mail a:visited {
    font-size: 1.6rem;
  }

  .contact__logo {
    width: 100px;
    margin: 0 auto 20px;
    padding: 40px 0 20px;
  }

  .contact__copyright {
    position: relative;
    left:auto;
    bottom:auto;
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 20px;
  }
}