@charset "UTF-8";

/*---------------------
✅背景色
#fff
✅テキスト
#585858
✅hover
 
✅差し色・CTA
#79C7A5(少し青み＋優しさ🌿)

background-color: rgba(122, 199, 187, 0.6);  ← #7AC7BB の透明ver 
backdrop-filter:blur(8px);




✅グラデーション
緑🌿background: linear-gradient(135deg, #4D9C7D 0%, #5BAE8D 50%, #A4C2A5 100%);
ブルー🌊background: linear-gradient(115deg, #6FA3C1, #98BDD2);

---------------------*/
* {
  margin: 0;
  padding: 0;
}

:root {
  --font-red: #a01035;
  --gradient-grn: linear-gradient(135deg, #79C7A5, #3D9DB3);
  --gradient-grn2: linear-gradient(135deg, #79C7A5, #3D9DB3);
  --gradient-lgrn: linear-gradient(135deg, #D5E887, #B2D76F);
  ;
  --gradient-lgray: linear-gradient(135deg, #B6CFC8, #D7E2DC);
  --gradient-gray: linear-gradient(135deg, #C4D1CC, #A3BDB7);
  --gradient-lblue: linear-gradient(135deg, #AFD7DF, #90D3C6);
  --gradient-mistgreen: linear-gradient(135deg, #E1EAF4, #DAF4ED);

  --font-serif: "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.underline__y {
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, #F5F5DC 50%, #F5F5DC 80%, transparent 80%);
}

html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Manrope", "Noto Sans JP", 'Hiragino Sans,', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', YuGothic, '游ゴシック体', 'BIZ UDPGothic', 'Meiryo', sans-serif;
  color: #585858;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: justify;
  word-break: break-all;
  line-height: 2;
  letter-spacing: .01em;
  overflow-x: hidden;
  position: relative;
}

main {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;

}

/*---link---*/
a {
  text-decoration: none;
  color: #585858;
  transform: opacity .5s linear;
}

@media (hover: none) {
  a:hover {
    color: inherit;
    transition: none;
  }
}

.font-red,
.font--red {
  color: #a01035;
}

.font--serif {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font--en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.link-ex::after {
  display: inline-block;
  content: '';
  width: 14px;
  height: 14px;
  background: url('../icon/icon-link-ex.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 5px;
}

.link-ex--w {
  background: url('../icon/icon-link-ex--w.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*---image---*/
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

/*---other---*/

.op:hover {
  opacity: .5;
}

.ui--sp {
  display: none;
}

/*----------------------------------------------------
  common
----------------------------------------------------*/
.l-inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.p-lead {
  font-size: 3.6rem;
  font-family: var(--font-serif);
  color: #7BBC8C;
  font-weight: 700;
  margin-bottom: 50px;
}

.p-lead__sub {
  font-size: 2.4rem;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 40px;
}

div>p:not(:last-of-type) {
  margin-bottom: 20px;
}

.annotation {
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .7);
  border-radius: 4px;
  padding: 0 10px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

.annotation-left {
  right: initial;
  left: 20px;
}

/*---見出し---*/
.ttl,
.ttl2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}

.ttl>h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  order: 2;
}

.ttl>span,
.ttl2>h2 {
  font-weight: 700;
  font-size: 4rem;
  letter-spacing: .1em;
  line-height: 1.6;
  order: 1;
}

.ttl2>h2 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.ttl>img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
  order: 3;
}

.fv-ttl__under>span {
  font-size: 5rem;
}


.fv-ttl__under::after {
  display: block;
  content: '';
  width: 60px;
  height: 4px;
  background: var(--gradient-grn);
  order: 3;
  margin-top: 30px;
}

/*---link-btn---*/
.link-btn {
  width: 100%;
  max-width: 420px;
  height: 80px;
  margin: 0 auto;
}

.link-btn>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  background: var(--gradient-mistgreen);
  transition: 1.5s;
  border-radius: 6px;
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  position: relative;
}

.link-btn>a>span {
  display: block;
  width: 80px;
  border-top: 1px solid #3D9DB3;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
  transition: transform 0.5s ease;
}

.link-btn>a:hover>span {
  transform: translate(16px, -50%);
}


section:not(.fv) {
  padding: 150px 0;
  position: relative;
}

/*----------------------------------------------------
  #heading / h1
----------------------------------------------------*/

h1 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: normal;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  letter-spacing: .05em;
  box-sizing: border-box;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.head-animation {
  transform: translateY(-100%);
}

.global-nav {
  width: 90%;
  height: auto;
  margin: 0 auto;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.scroll .global-nav {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(30px);
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.global-nav__top {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-nav__logo {
  width: auto;
  height: 52px;
  position: relative;
  z-index: 1001;
  order: 1;
}

.global-nav__logo>a,
.global-nav__logo>a>img {
  width: auto;
  height: 100%;
}

h1 {
  order: 2;
  margin-right: auto;
  padding: 0 2%;
  box-sizing: border-box;
}

h1>br {
  display: none;
}

.navigation-cta {
  width: auto;
  display: flex;
  align-items: center;
  order: 3;
}

.navigation-cta>a {
  width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 4px;
  letter-spacing: 0;
  box-sizing: border-box;
  color: #fff;
  transition: .5s;
  position: relative;
}

.navigation-cta__tel {
  background: var(--gradient-gray);
  margin-right: 8px;
}

.navigation-cta__contact {
  background: var(--gradient-grn);
}

.navigation-cta>a>img {
  width: auto;
  height: 50px;
}


.navigation-cta.header-sp {
  display: none;
}

.navigation-cta>ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin-right: 28px;
}

.navigation-cta>ul>li {
  width: 26px;
  height: auto;
}

.navigation-cta>ul>li:not(:last-of-type) {
  margin-right: 14px;
}

.navigation-cta>ul>li>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navigation-cta>ul>li>a>svg {
  display: block;
  fill: #1a1a1a;
}

/*---- navi ----*/
.navi-wrap {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.navi-wrap::after {
  display: block;
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #edf2ed;
}

.navi {
  width: auto;
  height: 100%;
  transition: none;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.navigation.resizing {
  visibility: hidden;
}

nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

nav>ul {
  height: 100%;
  display: flex;
  list-style: none;
}

nav>ul>li {
  width: auto;
  height: 100%;
}

nav>ul>li>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  line-height: 1.4;
  padding: 0 20px;
}

.navi-txt {
  font-size: 1.2rem;
  font-weight: 500;
}

.navi-en {
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}





/*----------------------------------------------------
  #nav-toggle
----------------------------------------------------*/
.nav-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 30px;
  z-index: 1001;
  cursor: pointer;
}

.nav-toggle>span {
  display: inline-block;
  width: 50%;
  height: 3px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #1a1a1a;
  border-radius: 3px;
  transition: all .4s;
  box-sizing: border-box;
}

.scroll .nav-toggle>span {
  background: #1a1a1a;
}

.nav-toggle>span:nth-of-type(1) {
  top: 10px;
}

.nav-toggle>span:nth-of-type(2) {
  top: 20px;
  right: 0;
}

.nav-toggle>span:nth-of-type(3) {
  top: 30px;
}

.nav-toggle.active>span {
  height: 3px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #1a1a1a;
}

.nav-toggle.active>span:nth-of-type(1) {
  top: 0;
  transform: translate(-50%, 20px) rotate(-45deg);
  -webkit-transform: translate(-50%, 20px) rotate(-45deg);
}

.nav-toggle.active>span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
  -webkit-animation: active-menu-bar .8s forwards;
}

@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

.nav-toggle.active span:nth-of-type(3) {
  top: 40px;
  transform: translate(-50%, -20px) rotate(45deg);
  -webkit-transform: translate(-50%, -20px) rotate(45deg);
}

/*----------------------------------------------------
  パンくず
----------------------------------------------------*/

.bread ul {
  display: flex;
  align-content: center;
  list-style: none;
  font-size: 1.2rem;
  margin-top: 40px;
}

.bread ul li {
  position: relative;
  margin-right: 1em;
  padding-right: 1em;
  font-weight: 500;
}

.bread ul li:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  width: 7px;
  height: 6px;
  margin: auto;
  background-image: url('../img/common/i_ar-bread.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*----------------------------------------------------
  inquiry
----------------------------------------------------*/
.inquiry {
  margin: 0 auto;
  padding-top: 0 !important;
}

.inquiry .l-inner {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
  box-sizing: border-box;
  background: #F4F7F4;
}

.inquiry h2 {
  text-align: center;
  margin-bottom: 30px;
}

.inquiry-col {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.inquiry-link-btn {
  width: 49%;
  height: auto;
}

.inquiry-link-btn>a {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 4px;
  letter-spacing: 0;
  padding: 14px 0;
  box-sizing: border-box;
  color: #fff;
  transition: .5s;
  position: relative;
}

.inquiry-link-btn>a>img {
  width: 65%;
}

.inquiry-link__mail>a {
  background: var(--gradient-grn);
}


.inquiry-link__tel>a {
  background: var(--gradient-gray);
}

.inquiry-txt {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
}


/*------------------------------------
 #mobile-nav
------------------------------------*/
#mobile-nav {
  display: none;
  width: 100%;
  max-width: 480px;
  height: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 998;
  box-sizing: border-box;
  background: #fff;
}

#mobile-nav>ul {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  list-style: none;
  position: relative;
  z-index: 1;
}

#mobile-nav>ul>li {
  width: 95%;
  height: 60px;
  margin: 0 auto 5px auto;
  border-radius: 6px;
}

#mobile-nav>ul>li>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  color: #fff;
}

.mobile-nav__img {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, .7);
  border-radius: 50vh;
  margin-right: 5px;
}

.mobile-nav__img>img {
  width: 60%;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.mobile-nav__inner>p {
  font-size: 1.6rem;
  font-weight: 700;
}

.mobile-nav__inner>span {
  font-size: 1.2rem;
}

#mobile-nav>p {
  font-size: 1.2rem;
  text-align: center;
}

/*------------------------------------
 .footer
------------------------------------*/
footer {
  width: 100%;
  height: auto;
  position: relative;
  background: var(--gradient-grn2);
  color: #fff;
}

footer a {
  color: #fff;
}

footer .l-inner {
  padding: 100px 0;
}

.footer-col {
  width: 40%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 40px auto;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px auto;
}

.footer-logo__main {
  width: 160px;
  margin-right: 5%;
}

.footer-logo__sub {
  width: 27.5%
}

.footer-logo__sub-logo {
  margin-bottom: 14px;
}

.footer-logo__tel {
  width: 100%;
  text-align: center;
}

.footer-logo__tel>a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 6px;
}

.footer-logo__tel>a>img {
  width: 80%;
}


.footer-nav {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.footer-nav::after {
  display: block;
  content: '';
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, .2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-nav>ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  z-index: 1;
}

.footer-nav>ul>li>a {
  display: inline-block;
  padding: 14px 20px;
}

.footer-cp-link {
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.footer-cp-link>a {
  padding: 5px 20px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 4px;
}

.copyright {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px 0;
  color: #fff;
}

@media screen and (max-width:1360px) {
  nav {
    padding-left: 0;
  }

  /*---footer----*/

}

@media screen and (max-width:1360px) {
  html {
    font-size: calc(100vw/136);
  }
}

@media screen and (max-width:1200px) {
  .global-nav__wrapper {
    width: 100%;
    max-width: initial;
    padding-left: 0;
  }

  .global-nav {
    justify-content: space-between;
    box-sizing: border-box;
  }

  .global-nav__top {
    padding-right: 30px;
    box-sizing: border-box;
  }

  .navigation-cta {
    margin-right: 20px;
  }

  #nav-toggle {
    display: block;
  }

  /*-------------------------------------------------
    toggle
  -------------------------------------------------*/
  .navi-wrap {
    width: 100%;
    max-width: initial;
    height: 100vh;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
  }

  .navi-wrap::after {
    display: none;
  }

  .navi-wrap.is-open {
    width: 100%;
    height: 100vh;
    opacity: 1;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
  }

  .navi.is-open::-webkit-scrollbar {
    display: none;
  }

  .navi {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    visibility: visible;
    overflow-y: scroll;
    background: #edf2ed;
    position: relative;
    z-index: 0;
  }

  .navi::-webkit-scrollbar {
    display: none;
  }

  .navi-txt {
    font-size: 2rem;
  }

  nav {
    width: 100%;
    height: auto;
    justify-content: space-between;
    margin: 0 auto;
    padding: 100px 0;
    box-sizing: border-box;
  }

  nav>ul {
    width: 60%;
    height: auto;
    flex-direction: column;
  }

  nav>ul>li {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
  }

  nav>ul>li:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
  }

  nav>ul>li>a {
    width: 100%;
    align-items: flex-start;
    padding: 12px 10px;
  }

  .navi-en {
    font-size: 2.8rem;
  }

  .navigation-cta.header-pc {
    display: none;
  }

  .navigation-cta.header-sp {
    display: block;
    width: 35%;
    margin-right: 0;
  }

  .navigation-cta>a {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .navigation-cta>a:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .navigation-cta>a>img {
    width: 70%;
    height: auto;
  }

  .navigation-cta>ul {
    margin: 20px auto;
    justify-content: center;
  }

  .navigation-cta>ul>li {
    width: 34px;
  }

  .navi-cp {
    width: 100%;
  }

  .navi-cp__logo {
    width: 100%;
    margin-bottom: 10px;
  }

  .navi-cp>ul {
    list-style: none;
    font-size: 1.6rem;
  }

  .navi-cp>ul>li {
    text-align: center;
  }
}

@media screen and (max-width:1024px) {
  html {
    font-size: calc(100vw/102.4);
  }
}

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


  /*---inquiry---*/
  .inquiry-col {
    width: 85%;
  }

  .inquiry-link-btn>a>img {
    width: 80%;
  }
}

@media screen and (max-width:786px) {
  html {
    font-size: calc(100vw/78.6);
  }

  .global-nav__top {
    padding-right: 50px;
  }

  nav {
    flex-direction: column;
  }

  nav>ul {
    width: 100%;
    margin-bottom: 40px;
  }

  .navigation-cta.header-sp {
    width: 65%;
    margin: 0 auto;
  }

  /*---contact---*/


  /*---footer---*/
  .footer-logo__sub {
    width: 40%;
  }
}

@media screen and (max-width:680px) {
  html {
    font-size: calc(100vw/68);
  }

  .p-lead {
    font-size: 2.8rem;
  }

  .p-lead__sub {
    font-size: 2.2rem;
  }


  /*---inquiry---*/

  .inquiry-col {
    width: 80%;
    flex-direction: column;
    margin: 0 auto;
  }

  .inquiry-link-btn {
    width: 100%;
  }

  .inquiry-link-btn:not(:last-of-type) {
    margin-bottom: 8px;
  }

  /*---footer---*/
  .footer-logo {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo__main {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .footer-logo__sub {
    width: 50%;
  }
}

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

  body {
    font-size: 1.6rem;
  }

  section:not(.fv) {
    padding: 80px 0;
  }

  .ui--sp {
    display: block;
  }

  /*---header---*/

  h1 {
    width: 90%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    letter-spacing: 0;
    line-height: 1.8;
    color: #b9b9b9;
    font-size: 60%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .global-nav {
    padding: 0;
  }

  .global-nav__top {
    height: 70px;
    padding-top: 12px;
    box-sizing: border-box;
  }

  .global-nav__logo {
    height: 46px;
  }

  .navigation-cta.header-sp {
    width: 100%;
  }

  .nav-toggle {
    right: 0;
  }

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

  .navi-txt {
    font-size: 1.6rem;
  }


  /*---ttl---*/
  .ttl,
  .ttl2 {
    margin-bottom: 30px;
  }

  .ttl>span,
  .ttl2>h2 {
    font-size: 3rem;
  }

  .ttl>h2 {
    font-size: 1.8rem;
  }

  .p-lead {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .p-lead__sub {
    font-size: 1.8rem;
  }

  .link-btn {
    width: 90%;
    max-width: initial;
  }

  .bread ul {
    display: flex;
    align-content: center;
    list-style: none;
    font-size: 1rem;
    margin-top: 20px;
  }

  /*---inquiry---*/
  .inquiry .l-inner {
    padding: 30px;
  }

  .inquiry h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .inquiry-col {
    width: 100%;
    margin-bottom: 10px;
  }

  .inquiry-txt {
    font-size: 1.4rem;
  }

  /*---footer---*/
  .footer-logo__main {
    width: 40%;
  }

  .footer-logo__sub {
    width: 75%;
  }

  .copyright {
    font-size: 1rem;
    padding-bottom: 70px;
  }
}