@charset "utf-8";

DIV.all_wrap {
  display: flex;
  flex-direction: column;
  color: #333;
  font-size: 2rem;
  letter-spacing: 0.05rem;
}

/* 背景画像 */
DIV.all_wrap UL.bg-change {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: -99999;
  padding: 0;
  margin: 0;
}

DIV.all_wrap UL.bg-change LI {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  animation-name: bg-change;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

DIV.all_wrap UL.bg-change LI:nth-child(1) {
  animation-delay: 0s;
}

DIV.all_wrap UL.bg-change LI:nth-child(2) {
  animation-delay: 5s;
}

DIV.all_wrap UL.bg-change LI:nth-child(3) {
  animation-delay: 10s;
}

DIV.all_wrap UL.bg-change LI:nth-child(4) {
  animation-delay: 15s;
}

DIV.all_wrap UL.bg-change LI:nth-child(5) {
  animation-delay: 20s;
}

@keyframes bg-change { 
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  10% {
    transform: scale(1.1);
    opacity: 1;
  }
  40% {
    transform: scale(1.2);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0
  }
}

/** ヘッダ **/
HEADER {
  display: flex;
  flex-direction: column;
  height: 48rem;
  height: 100vh;
  z-index: 99999;
}

HEADER DIV#header-bg {
  position: relative;
  z-index: -1;
  height: 48rem;
  height: 100vh;
  overflow: hidden;
}

HEADER DIV#header-title {
  position: absolute;
  top: 0;
  width: 100%;
  height: 48rem;
  /**/
  height: 100vh;
}

HEADER DIV#header-title DIV#header-catch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  align-items: flex-end;
  margin-top: 2rem;
  margin-right: 2rem;
  height: 38rem;
  height: calc(100vh - 10rem - 2rem);
}

HEADER DIV#header-title DIV#header-catch DIV {
  color: rgba(255, 255, 255, 0.75);
/*
  font-family: 'PT Serif', serif;
*/
  font-family: 'Marmelad', sans-serif;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 400;
}

HEADER DIV#header-title DIV#header-catch DIV:first-child {
/*
  font-family: 'Rosario', sans-serif;
*/
  font-size: 6rem;
  font-size: 3rem;
}

HEADER DIV#header-title DIV#header-menu {
  height: 10rem;
}

HEADER DIV#header-title DIV#header-menu DIV#hidden-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  background-color: #4676AC;
  color: #FFF;
/*
  font-family: 'Rosario', sans-serif;
*/
  font-family: 'Marmelad', sans-serif;
  font-size: 2.0rem;
  font-weight: 400;
  visibility: hidden;
}

HEADER DIV#header-title DIV#header-menu DIV#hidden-title A {
  color: #FFF;
  text-decoration: none;
}

HEADER DIV#header-title DIV#header-menu UL {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.75);
  border-bottom: 0.6rem solid #4676AC;
  box-sizing: border-box;
}

HEADER DIV#header-title DIV#header-menu UL LI {
  line-height: 6rem;
  padding: 0;
}

HEADER DIV#header-title DIV#header-menu UL LI.instagram {
  line-height: 7rem;
  display: none;
  display: list-item;
}


HEADER DIV#header-title DIV#header-menu UL LI.instagram IMG {
  width: 2rem;
  height: 2rem;
}

HEADER DIV#header-title DIV#header-menu UL LI A {
  display: block;
  position: relative;
  padding: 0 1rem;
  padding: 0 0.6rem;
  height: 6rem;
  color: #4676AC;
  font-family: 'Rosario', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  box-sizing: border-box;
}

HEADER DIV#header-title DIV#header-menu UL LI A::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1rem;
  background: #4676AC;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: 0.3s;
}

HEADER DIV#header-title DIV#header-menu UL LI A:hover::after {
  transform: scale(1, 1);
  text-decoration: none;
}


/** メイン **/
MAIN {
  display: flex;
  flex: 1;
  padding:0;
  flex-direction: column;
/*

  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.95);
*/
  margin: 1.5rem;
  width: calc(100% - 3rem);
}

MAIN SECTION {
  margin: 0;
  margin-top: 12rem;
  margin-bottom: 0;
  padding: 10rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
}

MAIN SECTION:first-child {
  margin-top: 6rem;
}

MAIN SECTION:last-child {
  margin-bottom: 12rem;
}

MAIN SECTION DIV.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #E3EBF3;
  height: 10rem;
  color: #4676AC;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}

MAIN SECTION DIV.section-header DIV:first-child {
  font-family: 'Rosario', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}
MAIN SECTION#message DIV.section-main,
MAIN SECTION#service DIV.section-main,
MAIN SECTION#contact DIV.section-main,
MAIN SECTION#privacy-policy DIV.section-main,
MAIN SECTION#privacy-policy DIV.section-footer {
  width: calc(100% - 6rem);
  margin: 0 3rem;
}

/* メッセージ */
MAIN SECTION#message {
  padding: 0;
}

MAIN SECTION#message DIV.section-main {
  width: calc(100% - 6rem);
  margin: 1rem;
  padding: 2rem;
  background-size: contain;
  background-size: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("../img/bg_message.jpg");
}

MAIN SECTION#message DIV.section-main DIV {
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  background-color: rgba(255, 255, 255, 0.75);
}

MAIN SECTION#message DIV.section-main P {
  margin: 0;
  padding: 2rem;
  color: #000;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
  line-height: 2.4rem;
}




/* サービス概要 ※削除予定 */
MAIN SECTION#service DIV.section-main DIV.block {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: 4rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

MAIN SECTION#service DIV.section-main DIV.block:last-child {
  margin-bottom: 0;
}


MAIN SECTION#service DIV.section-main DIV.block DIV.photo {
  margin-right: 0;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.photo IMG {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.25);
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description {

}

MAIN SECTION#service DIV.section-main DIV.block DIV.description DIV.title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description DIV.price {
  margin-top: 1rem;
  padding: 2rem 1rem;
  color: #4676AC;
  background-color: #ECF1F7;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description DIV.price SPAN {
  font-family: 'Rosario', sans-serif;
  font-size: 5rem;
  font-weight: 700;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description DIV.price SPAN.tilde {
  font-size: 3rem;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description TABLE {
  margin-top: 1rem;
}


MAIN SECTION#service DIV.section-main DIV.block DIV.description TABLE TH,
MAIN SECTION#service DIV.section-main DIV.block DIV.description TABLE TD {
  padding: 0.5rem 0;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6rem;
  line-height: 2rem;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description TABLE TH {
  white-space: nowrap;
  padding-right: 1rem;
  line-height: 1.6rem;
}

MAIN SECTION#service DIV.section-main DIV.block DIV.description TABLE TD A {
  text-decoration: underline;
}

MAIN SECTION#service DIV.section-main DIV.other {
  justify-content: center;
}

MAIN SECTION#service DIV.section-main DIV.other A {
  text-decoration: underline;
}

/* お問い合わせ */
MAIN SECTION#contact DIV.section-main {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
}

MAIN SECTION#contact DIV.section-main FORM {
  display: flex;
  flex-direction: column;
}

MAIN SECTION#contact DIV.section-main FORM DIV.block {
  margin: 1rem 0;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #666;
  text-align: center;
}

MAIN SECTION#contact DIV.section-main FORM DIV.block DIV.half {
  display: flex;
  width: 100%;
}


MAIN SECTION#contact DIV.section-main FORM DIV.block DIV.title::after {
  content: "必須";
  background-color: #C02B2B;
  color: #FFF;
  font-size: 1.2rem;
  padding: 0.2rem;
  margin-left: 0.5rem;
}

MAIN SECTION#contact DIV.section-main FORM DIV.block DIV.title {
  font-weight: 500;
}

MAIN SECTION#contact DIV.section-main FORM DIV.block:last-child {
  border: none;
}

MAIN SECTION#contact DIV.section-main FORM DIV.block LABEL,
MAIN SECTION#contact DIV.section-main FORM DIV.block INPUT,
MAIN SECTION#contact DIV.section-main FORM DIV.block TEXTAREA {
  margin: 2rem 0;
  box-sizing: border-box;
}

MAIN SECTION#contact DIV.section-main FORM DIV.block LABEL {
  margin-right: 1rem;
}

MAIN SECTION#contact DIV.section-main DIV.block INPUT[type="radio"] {

}

MAIN SECTION#contact DIV.section-main DIV.block INPUT[type="text"],
MAIN SECTION#contact DIV.section-main DIV.block INPUT[type="email"],
MAIN SECTION#contact DIV.section-main DIV.block TEXTAREA {
  padding: 1rem;
  width: calc(100% - 2rem);
  border: 1px solid #4676AC;
  border-radius: 0.5rem;
}

MAIN SECTION#contact DIV.section-main DIV.block TEXTAREA {
  resize: none;
}

MAIN SECTION#contact DIV.section-main DIV.block INPUT[type="submit"] {
  width: 24rem;
  padding: 1.6rem;
  background-color: #4676AC;
  color: #FFF;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
}


/* プライバシーポリシー */

MAIN SECTION#privacy-policy DIV.section-main {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

MAIN SECTION#privacy-policy DIV.section-main P {
  text-indent: 1.4rem;
}

MAIN SECTION#privacy-policy DIV.section-main OL,
MAIN SECTION#privacy-policy DIV.section-main UL {
  position: relative;
  margin: 2rem 0;
  padding: 0;
  list-style-type: none;
}

MAIN SECTION#privacy-policy DIV.section-main OL LI {
  position: relative;
}

MAIN SECTION#privacy-policy DIV.section-main OL LI SPAN {
  background: linear-gradient(transparent 40%, #E3EBF3 50%);
}

MAIN SECTION#privacy-policy DIV.section-main UL LI {
  margin-left: 1.2rem;
  margin-left: 0;
  margin: 1rem 0;
}

MAIN SECTION#privacy-policy DIV.section-main UL LI::before {
  content: '';
  display: inline-block;
  position: relative;
  left: 0;
  top: 0rem;
  width: 0.8rem;
  height: 1.2rem;
  background: #4676AC;
}

MAIN SECTION#privacy-policy DIV.section-footer {
  font-size: 1.4rem;
  line-height: 2.1rem;
}


/** フッタ **/
FOOTER {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 20rem;
  min-height: 10rem;
  background-color: #4676AC;
  font-weight: 500;
  color: #FFF;
}

FOOTER DIV {
  margin-bottom: 0.5rem;
/*
  font-family: 'Rosario', sans-serif;
*/
  font-family: 'Marmelad', sans-serif;
  font-size: 2rem;
}


@media (min-width: 640px) {
  MAIN SECTION#message DIV.section-main {
    width: calc(100% - 20rem);
    margin: 4rem;
    padding: 6rem;
  }
  MAIN SECTION#message DIV.section-main DIV {
    margin-bottom: 2rem;
    padding: 2rem;
  }
  MAIN SECTION#message DIV.section-main P {
    padding: 4rem;
  }
  MAIN SECTION#contact DIV.section-main FORM DIV.half {
    display: flex;
  }
  MAIN SECTION#contact DIV.section-main FORM DIV.half DIV {
    width: 50%;
    text-align: center;
  }
  MAIN SECTION#contact DIV.section-main FORM DIV.half DIV DIV.title,
  MAIN SECTION#contact DIV.section-main FORM DIV.half DIV DIV {
    width: 100%;
  }
}

@media (min-width: 960px) {
  /** ヘッダ **/
  HEADER {
    height: 106.8rem;
    height: 86rem;
    height: 72rem;
    height: 60rem;
    /**/
    height: 100vh;
  }
  HEADER DIV#header-bg {
    height: 60rem;
    /**/
    height: 100vh;
  }
  HEADER DIV#header-title {
    height: 60rem;
    /**/
    height: 100vh;
  }
  HEADER DIV#header-title DIV#header-catch {
    height: 47rem;
    margin-top: 2rem;
    /**/
    height: calc(100vh - 13rem - 2rem);
  }
  HEADER DIV#header-title DIV#header-catch DIV {

  }
  HEADER DIV#header-title DIV#header-catch DIV:first-child {

  }
  HEADER DIV#header-title DIV#header-menu {
    height: 13rem;
  }
  HEADER DIV#header-title DIV#header-menu DIV#hidden-title {
    height: 6rem;
    font-size: 3rem;
  }
  HEADER DIV#header-title DIV#header-menu UL {
    height: 7rem;
    border-bottom: 0.6rem solid #4676AC;
  }
  HEADER DIV#header-title DIV#header-menu UL LI {
    line-height: 7rem;
  }
  HEADER DIV#header-title DIV#header-menu UL LI.instagram {
    line-height: 8rem;
  }
  HEADER DIV#header-title DIV#header-menu UL LI.instagram IMG {
    width: 2.5rem;
    height: 2.5rem;
  }
  HEADER DIV#header-title DIV#header-menu UL LI A {
    height: 7rem;
    font-size: 2rem;
    padding: 0 2rem;
  }
  HEADER DIV#header-title DIV#header-menu UL LI A::after {
  }

  /** メイン **/
  MAIN {
    margin: 1.5rem auto;
    width: 90rem;
  }
  MAIN SECTION DIV.section-header {
    height: 12rem;
    font-size: 1.6rem;
  }
  MAIN SECTION DIV.section-header DIV:first-child {
    font-size: 3.2rem;
  }
  MAIN SECTION#service DIV.section-main,
  MAIN SECTION#contact DIV.section-main,
  MAIN SECTION#privacy-policy DIV.section-main,
  MAIN SECTION#privacy-policy DIV.section-footer {
    width: 86rem;
    margin: 0 auto;
  }
  /** フッタ **/
  FOOTER {
    min-height: 16rem;
  }
  FOOTER DIV {
    margin-bottom: 1rem;
/*
    font-family: 'Rosario', sans-serif;
*/
    font-family: 'Marmelad', sans-serif;
    font-size: 2.4rem;
  }
}

@media (min-width: 1280px) {
  MAIN {
  }
}
