@charset "UTF-8";
/*-------------------------------@mixin-------------------------------*/
/*-------------------------------ヘッダーセクション-----------------------*/
header {
  height: 136px;
  width: 100%;
  margin: 0 auto;
  padding: 51px 40px 0 0;
  position: relative;
  max-width: 1280px;
  background-color: #fff;
}
header nav {
  width: 100%;
  height: 21px;
}
header nav ul {
  display: flex;
  justify-content: flex-end;
}
header nav ul li {
  margin-right: 45px;
  padding-top: 11px;
}
header nav ul li a {
  text-decoration: none;
  color: #707070;
  font-size: 1.6rem;
}
header nav ul li a:last-of-type {
  font-size: 1.4rem;
}
header nav ul li a:hover {
  color: #CEB185;
}
header nav ul li:last-of-type {
  margin-right: 0;
  padding-top: 0;
}

.policy {
  display: none;
}

.header-button {
  background-color: #CEB185;
  border-radius: 20px;
  border: solid 1px #CEB185;
  padding: 11px 49px 11px 23px;
  position: relative;
  width: 152px;
  color: #fff;
  font-size: 1.4rem;
  display: block;
}
.header-button:hover {
  background-color: #fff;
  color: #CEB185;
}
.header-button:hover .online-button {
  fill: #CEB185;
}
.header-button svg {
  position: absolute;
  top: 15px;
  right: 24px;
}

.logo {
  position: absolute;
  top: 48px;
  left: 80px;
}

.close-button {
  display: none;
}

.mobile-logo {
  display: none;
}

.mobile-br {
  display: none;
}

/*------------------------------ヘッダーレスポンシブ----------------------*/
@media (max-width: 1000px) {
  header {
    height: 80px;
    padding: 20px 0;
    position: fixed;
    z-index: 1000;
  }
  .logo {
    height: 43px;
    top: 19px;
    left: 24px;
  }
  #open-button {
    display: block;
    position: fixed;
    right: 24px;
    top: 27px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10000;
  }
  #open-button span, #open-button span:before, #open-button span:after {
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: #CEB185;
    display: block;
    content: "";
  }
  #open-button span:before {
    bottom: -12px;
  }
  #open-button span:after {
    bottom: -24px;
  }
  #nav-content {
    background-color: rgba(252, 255, 255, 0.8);
    width: 80%;
    height: 100%;
    padding: 90px 60px;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(120%);
    transition: 0.3s ease-in-out;
  }
  #nav-content ul {
    display: block;
  }
  #nav-content ul li {
    margin: 0 auto 30px;
    text-align: center;
  }
  #nav-content ul li a {
    font-size: 1.6rem;
  }
  #nav-content ul li a:last-of-type {
    margin: 0 auto;
    font-size: 1.4rem;
  }
  #nav-content.sp_open {
    transform: translateX(0%);
    transition: 0.5s;
    display: block;
    z-index: 1000;
  }
  .mobile-logo {
    display: block;
  }
  .mobile-logo img {
    width: 100px;
    display: block;
    margin: 0 auto;
  }
  .mobile-br {
    display: block;
  }
  .policy {
    display: block;
  }
}
.active {
  transform: translateY(20px) rotate(-45deg);
  transition: 0.5s;
}
.active::before {
  opacity: 0;
}
.active::after {
  transform: translateY(-23px) rotate(90deg);
  transition: 0.5s;
}

/*--------------------------------トップセクション---------------------------*/
.top {
  background-image: url("../images/top_image.png");
  background-position: right;
  background-size: cover;
  height: 100%;
  padding: 424px 107px 44px 80px;
  width: 100%;
}

.catchphrase h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.6;
  color: #707070;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1093px;
  margin: 0 auto;
}

.button-wrapper {
  max-width: 360px; /*------------------------max---------------------*/
  height: 104px;
  background-color: #fff;
  border: #CEB185 solid 1px;
  padding: 4px;
  margin-top: 90px;
}

.button-inner {
  width: 100%;
  height: 100%;
  border: #CEB185 solid 1px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.button-inner a {
  text-decoration: none;
  color: #fff;
}

.product {
  padding-top: 16px;
  margin-right: 9px;
}

.masyome {
  font-weight: 600;
  color: #CEB185;
  font-size: 2.4rem;
}

.collabo {
  color: #CEB185;
  font-size: 1.6rem;
  font-weight: 400;
}

.top-button-wrapper {
  padding-top: 24px;
}

.top-button {
  background-color: #CEB185;
  border-radius: 20px;
  border: solid 1px #CEB185;
  padding: 11px 49px 11px 23px;
  position: relative;
  width: 152px;
  color: #fff;
  font-size: 1.4rem;
  display: block;
}
.top-button:hover {
  background-color: #fff;
  color: #CEB185;
}
.top-button:hover .online-button {
  fill: #CEB185;
}
.top-button svg {
  position: absolute;
  top: 15px;
  right: 24px;
}

/*--------------------------------------ONLINEボタン-----------------------------*/
.online-button {
  position: absolute;
  top: 15px;
  right: 24px;
}

/*------------------------------トップレスポンシブ----------------------*/
@media (max-width: 1080px) {
  .top {
    background-position: center;
    padding: 420px 24px 46px;
  }
  .catchphrase {
    margin: 0 auto;
  }
  .catchphrase h1 {
    font-size: 1.8rem;
  }
  .button-wrapper {
    margin: 48px auto;
  }
  .button-inner {
    padding: 0 8px;
  }
  .product {
    padding-top: 21px;
  }
  .masyome {
    font-size: 1.8rem;
  }
  .collabo {
    font-size: 1.5rem;
  }
}
/*-----------------------------------ヒストリーセクション----------------------*/
.history {
  background-image: url("../images/background_image.svg");
  background-size: cover;
  background-position: top;
  background-color: #F9F9F9;
}

.history-contents {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto 306px;
  padding: 230px 107px 0 0;
}

.history-inner {
  max-width: 528px; /*------------------------max---------------------*/
  position: relative;
  z-index: 1;
}
.history-inner h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #2F3941;
  font-size: 2.4rem;
  font-weight: 400;
  position: absolute;
  top: -100px;
  left: -60px;
}

.history-text {
  font-size: 1.6rem;
  font-weight: 400;
  color: #707070;
}
.history-text p {
  margin-bottom: 40px;
  line-height: 1.7;
}
.history-text p:last-of-type {
  margin-bottom: 0;
}
.history-text ::before {
  content: "";
  width: 686px; /*------------------------max---------------------*/
  height: 234px;
  background-color: #fff;
  position: absolute;
  top: -24px;
  right: -27px;
  z-index: -1;
}

.history-contents2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 230px 107px;
}

.history-inner2 {
  max-width: 589px; /*------------------------max---------------------*/
  position: relative;
  z-index: 1;
}
.history-inner2 h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #2F3941;
  font-size: 2.4rem;
  font-weight: 400;
  position: absolute;
  top: -95px;
  left: 0px;
  right: -70px;
}

.newline {
  display: inline-block;
}

.history-text2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #707070;
  text-align: right;
}
.history-text2 p {
  margin-bottom: 40px;
  line-height: 1.7;
}
.history-text2 p:last-of-type {
  margin-bottom: 0;
}
.history-text2 ::before {
  content: "";
  width: 589px; /*------------------------max---------------------*/
  height: 306px;
  background-color: #fff;
  position: absolute;
  top: -24px;
  right: -104px;
  z-index: -1;
}

/*------------------------------ヒストリーレスポンシブ----------------------*/
@media (max-width: 800px) {
  .history-contents {
    margin-bottom: 277px;
    padding: 192px 24px 0;
  }
  .history-inner h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #2F3941;
    font-size: 1.8rem;
    font-weight: 400;
    position: absolute;
    top: -70px;
    left: 0px;
    writing-mode: horizontal-tb;
  }
  .history-text p {
    margin-bottom: 30px;
  }
  .history-text ::before {
    content: "";
    width: 88%; /*------------------------max---------------------*/
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: -56px;
    right: -24px;
    z-index: -1;
  }
  .history-contents2 {
    padding: 0 24px 133px;
  }
  .history-inner2 h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #2F3941;
    font-size: 1.8rem;
    font-weight: 400;
    position: absolute;
    top: -70px;
    left: 0px;
    writing-mode: horizontal-tb;
    text-align: right;
    right: 0;
  }
  .history-text2 p {
    margin-bottom: 30px;
  }
  .history-text2 ::before {
    content: "";
    width: 99%; /*------------------------max---------------------*/
    height: 105%;
    background-color: #fff;
    position: absolute;
    top: -57px;
    right: 0;
    z-index: -1;
    left: -23px;
  }
}
/*-----------------------------------フィーチャーセクション----------------------*/
.feature {
  background-image: url("../images/background_image96.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: repeat;
}

.feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 102px 80px 124px;
}

.small-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #95B8D5;
  position: relative;
  margin-bottom: 10px;
  margin-left: 75px;
}
.small-title::before {
  content: "";
  width: 69px;
  height: 1px;
  background-color: #95B8D5;
  position: absolute;
  top: 10px;
  left: -75px;
}

.title {
  font-size: 2.4rem;
  font-weight: 400;
  color: #2F3941;
  margin-bottom: 56px;
}

.feature-contents {
  background-color: #fff;
  border: solid #95B8D5 1px;
  padding: 64px 47px 64px 64px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.feature-contents h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #95B8D5;
  margin-bottom: 40px;
  position: relative;
}
.feature-contents h3::before {
  content: "";
  width: 200px;
  height: 1px;
  background-color: #95B8D5;
  position: absolute;
  top: 30px;
}
.feature-contents img {
  max-width: 384px; /*------------------------max---------------------*/
  height: 100%;
  margin-top: 108px;
  width: 100%;
}

.feature-text p {
  color: #2F3941;
  margin-bottom: 20px;
}
.feature-text p:last-of-type {
  margin-bottom: 0;
}

.feature-contents2 {
  background-color: #fff;
  border: solid #95B8D5 1px;
  padding: 72px 47px 64px 64px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.feature-contents2 h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #95B8D5;
  margin-bottom: 40px;
  position: relative;
}
.feature-contents2 h3::before {
  content: "";
  width: 200px;
  height: 1px;
  background-color: #95B8D5;
  position: absolute;
  top: 30px;
}
.feature-contents2 img {
  max-width: 384px; /*------------------------max---------------------*/
  height: 100%;
  margin-top: 140px;
  width: 100%;
}

.feature-text2 {
  max-width: 527px; /*------------------------max---------------------*/
}
.feature-text2 h4 {
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 15px;
  position: relative;
}
.feature-text2 h4::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #95B8D5;
  position: absolute;
  top: 5px;
  left: -15px;
}
.feature-text2 p {
  color: #2F3941;
  margin-bottom: 20px;
}
.feature-text2 p:last-of-type {
  margin-bottom: 0;
}

.feature-contents3 { /*------------------修正-----------------------*/
  background-color: #fff;
  border: solid #95B8D5 1px;
  padding: 64px 47px 90px 64px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
  margin-bottom: 40px;
  display: block;
}
.feature-contents3 h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #95B8D5;
  margin-bottom: 40px;
  position: relative;
}
.feature-contents3 h3::before {
  content: "";
  width: 200px;
  height: 1px;
  background-color: #95B8D5;
  position: absolute;
  top: 30px;
}
.feature-contents3 img {
  max-width: 384px; /*------------------------max---------------------*/
  height: 100%;
  margin-top: 60px;
  width: 100%;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-text3 {
  max-width: 527px; /*------------------------max---------------------*/
}
.feature-text3 h4 {
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 15px;
  position: relative;
}
.feature-text3 h4::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #95B8D5;
  position: absolute;
  top: 5px;
  left: -15px;
}
.feature-text3 p {
  color: #2F3941;
  margin-bottom: 20px;
}
.feature-text3 p:last-of-type {
  margin-bottom: 0;
}

.asterisk {
  text-align: right;
  margin-top: 10px;
  font-size: 1.2rem;
}

/*------------------------------フィーチャーレスポンシブ----------------------*/
@media (max-width: 750px) {
  .feature {
    background-image: none;
  }
  .feature-inner {
    padding: 120px 24px;
  }
  .title {
    font-size: 1.8rem;
  }
  .feature-contents {
    background-color: #fff;
    border: solid #95B8D5 1px;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .feature-contents h3 {
    font-size: 1.6rem;
  }
  .feature-contents img {
    max-width: 384px; /*------------------------max---------------------*/
    height: 100%;
    margin-top: 50px;
    width: 100%;
  }
  .feature-text p {
    margin-bottom: 30px;
  }
  .feature-contents2 {
    background-color: #fff;
    border: solid #95B8D5 1px;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .feature-contents2 h3 {
    font-size: 1.6rem;
  }
  .feature-contents2 img {
    max-width: 384px; /*------------------------max---------------------*/
    height: 100%;
    margin-top: 50px;
    width: 100%;
  }
  .feature-contents2 p {
    margin-bottom: 30px;
  }
  .feature-contents3 {
    background-color: #fff;
    border: solid #95B8D5 1px;
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
    margin-bottom: 0;
    display: block;
  }
  .feature-contents3 h3 {
    font-size: 1.6rem;
  }
  .feature-text3 p {
    margin-bottom: 30px;
  }
}
/*-----------------------------------レコメンデーションセクション----------------------*/
.recommendation {
  background-color: #F9F9F9;
}

.small-title2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #CEB185;
  position: relative;
  margin-bottom: 10px;
  margin-left: 75px;
}
.small-title2::before {
  content: "";
  width: 69px;
  height: 1px;
  background-color: #CEB185;
  position: absolute;
  top: 10px;
  left: -75px;
}

.recommendation-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 102px 132px 124px;
}

.recommendation-contents {
  background-color: #fff;
  padding: 56px 54px 56px 54px;
  position: relative;
}
.recommendation-contents::before {
  content: "";
  max-width: 1054px; /*------------------------max---------------------*/
  width: 100%;
  height: 100%;
  border: solid 1px #CEB185;
  position: absolute;
  top: 15px;
  left: 15px;
}

.doctor {
  margin-bottom: 20px;
}
.doctor h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #CEB185;
  margin-bottom: 8px;
}

.recommendation-text {
  margin-bottom: 37px;
  font-size: 1.6rem;
}
.recommendation-text:last-of-type {
  margin-bottom: 0;
}

/*------------------------------レコメンデーションレスポンシブ----------------------*/
@media (max-width: 750px) {
  .recommendation-inner {
    padding: 120px 24px;
  }
  .recommendation-contents {
    padding: 60px 20px;
    line-height: 1.7;
  }
  .recommendation-contents::before {
    top: 0;
    left: 0;
  }
  .doctor h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .recommendation-text {
    font-size: 1.4rem;
  }
}
/*-----------------------------------ブランドセクション----------------------*/
.brand-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 108px 102px 180px 124px;
}

.brand-text {
  font-size: 1.6rem;
  color: #2F3941;
  max-width: 509px; /*------------------------max---------------------*/
  margin-bottom: 54px;
  line-height: 1.7;
}
.brand-text p {
  margin-bottom: 30px;
}

.brand-text2 {
  font-size: 1.6rem;
  color: #5F5F60;
  max-width: 517px; /*------------------------max---------------------*/
  margin-bottom: 0px;
  line-height: 1.7;
}
.brand-text2 p {
  margin-bottom: 30px;
}
.brand-text2 p:last-of-type {
  margin-bottom: 0;
}

.profile {
  padding-top: 130px;
}
.profile img {
  margin-bottom: 295px;
  margin-left: 120px;
}

.profile-contents {
  max-width: 479px; /*------------------------max---------------------*/
  border: solid #95B8D5 1px;
  padding: 31px;
}
.profile-contents h3 {
  font-size: 2rem;
  color: #95B8D5;
  font-weight: 400;
  margin-bottom: 16px;
}
.profile-contents p {
  font-size: 1.6rem;
  line-height: 1.6;
}

/*-----------------------------------ブランドレスポンシブ----------------------*/
@media (max-width: 750px) {
  .brand-inner {
    padding: 120px 24px;
  }
  .brand-text {
    font-size: 1.4rem;
  }
  .brand-text2 {
    font-size: 1.4rem;
  }
  .profile {
    padding-top: 80px;
  }
  .profile img {
    margin: 0 auto;
    display: block;
    margin: 0 auto 40px;
  }
  .profile-contents {
    padding: 31px 20px;
  }
  .profile-contents h3 {
    font-size: 1.8rem;
  }
  .profile-contents p {
    font-size: 1.4rem;
  }
}
/*-----------------------------------カンパニーセクション----------------------*/
.company-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 102px 180px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.company-contents {
  margin-top: 25px;
}
.company-contents tbody tr th {
  width: 130px;
}

.mail {
  text-decoration: none;
  color: #2F3941;
}
.mail:hover {
  opacity: 0.5;
}

/*-----------------------------------カンパニーレスポンシブ----------------------*/
@media (max-width: 1000px) {
  .company-inner {
    padding: 0 24px 30px;
  }
  .company-contents tbody {
    font-size: 1.2rem;
  }
  .company-contents tbody tr {
    height: 60px;
  }
  .company-contents tbody tr th {
    width: 100px;
  }
  .footer-logo {
    margin-bottom: 20px;
    width: 146px;
    height: 135px;
  }
}
/*-----------------------------------プライバシーセクション----------------------*/
.privacy-contents h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.privacy {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 124px;
}

.privacy-contents {
  border: 1px solid #95B8D5;
  padding: 70px;
}

.privacy-text {
  margin-bottom: 50px;
}

.privacy-text2 {
  margin-bottom: 30px;
}

.privacy-contents-item {
  margin-bottom: 50px;
}
.privacy-contents-item ul {
  margin-left: 20px;
}

/*-----------------------------------プライバシーレスポンシブ----------------------*/
@media (max-width: 750px) {
  .privacy-contents h3 {
    font-size: 1.4rem;
  }
  .privacy {
    padding: 120px 24px;
  }
  .privacy-contents {
    padding: 20px;
  }
  .privacy-contents p {
    font-size: 1.2rem;
  }
  .privacy-contents-item ul li {
    font-size: 1.2rem;
  }
}
/*-----------------------------------フッターセクション----------------------*/
footer nav {
  width: 768px;
  height: 21px;
  margin: 0 auto 40px;
}
footer nav ul {
  display: flex;
  justify-content: space-between;
}
footer nav ul li a {
  text-decoration: none;
  color: #707070;
  font-size: 1.6rem;
}
footer nav ul li a:hover {
  color: #CEB185;
}

.footer-button {
  background-color: #CEB185;
  border-radius: 20px;
  border: solid 1px #CEB185;
  padding: 11px 49px 11px 23px;
  position: relative;
  width: 152px;
  color: #fff;
  font-size: 1.4rem;
  display: block;
  margin: 0 auto 96px;
  text-decoration: none;
}
.footer-button:hover {
  background-color: #fff;
  color: #CEB185;
}
.footer-button:hover .online-button {
  fill: #CEB185;
}
.footer-button svg {
  position: absolute;
  top: 15px;
  right: 24px;
}

small {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  margin-bottom: 48px;
}

.instagram {
  display: block;
  margin: 0 auto 40px;
  width: 40px;
}
.instagram:hover {
  transform: scale(1.2);
  transition: 1s all;
}
.instagram img {
  width: 100%;
}

/*-----------------------------------フッターレスポンシブ----------------------*/
@media (max-width: 780px) {
  .footer-nav {
    display: none;
  }
}
/*------------------上へ戻るボタン--------------------*/
#scroll-top {
  background-color: #95B8D5;
  opacity: 0.6;
  padding: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
#scroll-top a {
  display: block;
  content: " ";
  width: 12px;
  height: 12px;
  margin: 9px;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  transform: rotate(-45deg);
}

/*-----------------------スクロールしたら要素を表示--------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 800ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*-----------------------スクロールしたらヘッダースライド--------------------------*/
.side-header {
  position: fixed;
  transform: translate(-49.3055555556vw, 47.9166666667vw) rotate(-90deg);
  transition: 1.5s;
  z-index: 100;
}
.side-header .logo {
  display: none;
}
.side-header ul li {
  margin-right: 25px;
}
.side-header ul li a {
  font-size: 1.4rem;
}

/*-----------------------スクロールしたらヘッダースライドレスポンシブ--------------------------*//*# sourceMappingURL=style.css.map */