@charset "UTF-8";

/*---------------------
✅背景色
#fff
✅テキスト
#444444
✅hover
 #E6A857（少し落ち着いたゴールドオレンジ✨）
✅差し色・CTA
#F4B860（ナチュラルなベージュオレンジ🌿）
LINE用
#5BAE8D（ティールグリーン🌿）

✅サブアクセント
#E6A857(少し深みのあるオレンジ)/#C08552（ブラウン）

✅ブロックの背景
#E3F2FD（パステルブルー・ふんわり透明感！）
✅テキストの背景（強調ボックス
#CFE6F3（ライトスカイブルー・視認性◎）
✅画像の上（オーバーレイ）
#A8DADC（ミントブルー・透明度50%）
✅見出し色・タイトル色等
#6FA3C1（落ち着いたスモーキーブルー）

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

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

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Lato", "Noto Sans JP", 'Hiragino Sans,', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', YuGothic, '游ゴシック体', 'BIZ UDPGothic', 'Meiryo', sans-serif;
  color: #5A5247;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);

  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: #5A5247;
}

@media (hover: hover) {
  a:hover {
    color: #E6A857;
    text-decoration: none;
    transition: 0.5s;
  }
}

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

.font-en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  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;
}

/*---fonts---*/

.mincho {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
}

/*---spacer---*/
.spacer-bottom30 {
  margin-bottom: 30px;
}

/*---gradient---*/
.gradient-orange {
  background: linear-gradient(115deg, #F4B860, #FBE07B);
}

.gradient-blue {
  background: linear-gradient(115deg, #6FA3C1, #98BDD2);
}

.gradient-green {
  background: linear-gradient(135deg, #4D9C7D 0%, #5BAE8D 50%, #A4C2A5 100%);
}

.font-brw {
  color: #C08552;
}

.font-green {
  color: #4D9C7D;
}

/*---moveing---*/


@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

.ttl>h2 {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  order: 2;
}

.ttl>p {
  color: #E6A857;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: .1em;
  line-height: 1.4;
  order: 1;
}

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

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

.link-btn>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  color: #fff;
  font-style: normal;
  background: linear-gradient(115deg, #F4B860, #FBE07B);
  transition: 0.3s;
  position: relative;
}

.link-btn>a:hover {
  background: linear-gradient(115deg, #E6A857, #F4B860);
}

.link-btn>a::after {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  background: url('../icon/arrow-r--w.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}

section {
  padding: 150px 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}


/*----------------------------------------------------
  #loading
----------------------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loading__inner {
  width: 100%;
  height: auto;
}

.loading__inner>img {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}

/*----------------------------------------------------
  #heading / h1
----------------------------------------------------*/
#heading {
  width: 100%;
  height: auto;
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 2;
}

#heading>h1 {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 5px 0;
  text-align: right;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.4;
  box-sizing: border-box;
}

#heading>h1>br {
  display: none;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 100%;
  height: auto;
}

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

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

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

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

.global-nav {
  width: 90%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.global-nav__logo>a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

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

.global-nav__logo-cp {
  display: none;
}

.navigation {
  width: auto;
  height: 100%;
  transition: none;
  visibility: visible;
}

.navigation.resizing {
  visibility: hidden;
}

nav {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding-left: 100px;
  box-sizing: border-box;
}

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

nav>ul>li,
.navi__menu-inner {
  display: inline-block;
  width: auto;
  height: 100%;
}

.nav-recruit {
  padding-left: 10px;
  margin-left: 10px;
  position: relative;
}

.nav-recruit::before {
  display: inline-block;
  content: '';
  border-left: 3px dotted #ccc;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 3px;
  height: 16px;
}

.nav-insta>a {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.nav-current>a {
  position: relative;
}

.nav-current>a::after {
  display: inline-block;
  content: '';
  width: 80%;
  height: 0;
  border-bottom: 2px solid #E6A857;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

nav>ul>li>a,
.navi__menu-inner>a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 16px;
}

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

.navi-txt>i {
  margin-right: 5px;
}

.navi__menu-inner>span {
  display: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

.navi__menu-inner>span>img {
  display: inline-block;
  width: 100%;
}

.navi__menuSub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  height: auto;
  padding: 20px 0;
  list-style: none;
  background: rgba(255, 255, 255, .9);
}

.navi__menuSub>ul {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.navi__menuSub>ul>li {
  display: inline-flex;
  align-items: center;
  width: 25%;
}

.navi__menuSub>ul>li::before {
  display: inline-block;
  content: '';
  width: 15px;
  height: 0;
  border-top: 1px solid #ccc;
}

.navi__menuSub>ul>li>a {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: 100%;
  height: auto !important;
  padding: 10px 20px 10px 10px;
  line-height: 1.4;
  box-sizing: border-box;
  text-align: left !important;
}

.navi__menuSub>ul>li>a .navi-txt {
  display: inline-block;
}

.navi__menuSub>ul>li>a>i {
  margin-right: 8px;
}

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

.navigation-cta>a {
  width: 160px;
  height: 42px;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  padding-left: 20px;
  border-radius: 50vh;
  box-sizing: border-box;
  color: #fff;
  transition: .5s;
  position: relative;
}

.navigation-cta>a:not(:last-child) {
  margin-right: 5px;
}

.navigation-cta>a>span:nth-of-type(2) {
  display: flex;
  align-items: center;
}

.navigation-cta>a>span:nth-of-type(2)::before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  background: 50vh;
  border-radius: 50vh;
  margin-right: 5px;
  background: #fff;
}

.navigation-cta__line {
  background: linear-gradient(135deg, #4D9C7D 0%, #5BAE8D 50%, #A4C2A5 100%);
}

.navigation-cta__contact {
  background: linear-gradient(115deg, #F4B860, #FBE07B);
}

.navigation-cta__contact::after {
  display: inline-block;
}

.navigation-cat__icon {
  width: 28px;
  height: 28px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 50vh;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
}

.navigation-cat__icon>img {
  width: 60%;
}

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

/*----------------------------------------------------
  #nav-toggle
----------------------------------------------------*/
.nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 20px;
  width: 60px;
  height: 100px;
  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: 30px;
}

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

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

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

.nav-toggle.active>span:nth-of-type(1) {
  top: 20px;
  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: 60px;
  transform: translate(-50%, -20px) rotate(45deg);
  -webkit-transform: translate(-50%, -20px) rotate(45deg);
}

/*----------------------------------------------------
  #service
----------------------------------------------------*/
.service {
  padding-bottom: 100px;
}

.service .container {
  width: 95%;
  padding-top: 20vh;
  max-width: 1440px;
  position: relative;
  z-index: 1;
}

.serice-ttl>h2 {
  display: flex;
  align-items: center;
}

.serice-ttl>h2::before,
.serice-ttl>h2::after {
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background: url('../img/common/icon-flower--ora.svg');
  background-size: contain;
  background-repeat: repeat;
}

.serice-ttl>h2::before {
  margin-right: 10px;
}

.serice-ttl>h2::after {
  margin-left: 10px;
}

.service-lead {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

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

.service-box {
  width: 32%;
  display: flex;
  flex-direction: column;
}

.service-eyecatch {
  width: 100%;
  height: auto;
  position: relative;
}

.service-eyecatch::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 67%;
}

.service-eyecatch>img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px 20px 0 0;
}

.service-box__ttl {
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 20px;
  border-radius: 10px 0 0 0;
  box-sizing: border-box;
  z-index: 1;
  background: #E6A857;
  color: #fff;
  font-weight: bold;
}

.service-box__ttl>h3 {
  font-size: 2rem;
  font-weight: 700;
}

.service-col__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 20px 30px 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 20px 20px;
}

.service-col__inner-lead {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 14px 0;
}

.service-sol__list>ul {
  width: 100%;
  list-style: none;
  box-sizing: border-box;
}

.service-sol__list>ul>li {
  width: 100%;
  display: flex;
}

.service-sol__list>ul>li:not(:last-of-type) {
  margin-bottom: 8px;
}

.service-sol__list>ul>li>a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid #FBEAD1;
  border-radius: 8px;
  box-sizing: border-box;
}

.service-sol__list>ul>li>a::after {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url('../icon/arrow-r--ora.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
}

.service-sol__list>ul>li>a>span {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.service-sol__list>ul>li>a>span>img {
  display: inline-block;
  width: 12px;
  margin-left: 5px;
}

.service-sol__list>ul>li>a::before {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  background: url('../icon/icon-circle--orange.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
}


.service-bg {
  width: 200vw;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
  pointer-events: none;
}

.service-chara {
  width: 120px;
  height: auto;
  position: absolute;
  top: -80px;
  left: 0;
  transform: rotate(-22.5deg);
}

/*------------------------------------
parallax
------------------------------------*/
#parallax {
  width: 100%;
  height: auto;
  position: relative;
}

#parallax::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 80px;
  background: #FBEAD1;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  z-index: 2;
}

/* 下部の ∪アーチ */
#parallax::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 80px;
  background: #fff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.parallax {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.parallax::before {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 40%;
}

.parallax::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(214, 212, 169) 30%, rgb(214, 196, 169) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

.parallax-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-img picture,
.parallax-img img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.parallax-text {
  width: 40%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
  mix-blend-mode: overlay;
  z-index: 1;
}

.menu-select-arrow {
  width: 100%;
  height: 16px;
  margin: 5px 0 20px 0;
  position: relative;
}

.menu-select-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 16px;
  height: 16px;
  border-top: 16px solid #fff;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-bottom: 16px solid transparent;
  -webkit-animation: blink 2s infinite;
  animation: blink 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.parallax-layer {
  width: 27.5%;
  position: absolute;
  top: 85%;
  right: -1.5%;
  z-index: 2;
}

/*------------------------------------
 #contact
------------------------------------*/

.contact {
  z-index: 1;
  background: #fff;
}

.contact::before {
  display: block;
  content: '';
  width: calc(100% - 40px);
  height: 100%;
  background-image: url('../img/common/bg-contact.png');
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: 0;
}

.contact::after {
  display: block;
  content: '';
  width: calc(100% - 40px);
  height: 100%;
  background: rgba(0, 0, 0, .4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: 0;
}

.contact .container {
  max-width: 896px;
  position: relative;
  z-index: 2;
}

.contact-ttl>h2,
.contact-ttl>p {
  color: #fff;
}

.contact-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-link-btn {
  width: 49%;
  height: 120px;
  margin: 0 auto;
}

.contact-link-btn>a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  background: rgba(255, 255, 255, .8);
  border-radius: 50vh;
  backdrop-filter: blur(10px);
}

.contact-link-btn>a:hover {
  color: #444;
}

.contact-link-btn>a>img {
  width: 48px;
  margin-right: 10px;
}

.contact-col__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

.contact-col__inner-main {
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-col__inner-sub {
  font-size: 1.2rem;
}

.contact-link-btn__line>a i {
  color: #5BAE8D;
}

.contact-link-btn__mail>a i {
  color: #FBE07B;
}

.contact-chara {
  width: 48px;
  position: absolute;
  top: -60px;
  right: 2.5%;
  z-index: 1;
}

.contact-layer {
  width: 17.5%;
  height: auto;
  position: absolute;
  top: -20%;
  left: -1.5%;
  z-index: 1;
}

/*------------------------------------
 #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
------------------------------------*/
#footer01 {
  width: 100%;
  height: auto;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.footer-body {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
}

#footer01 .link-ex::after {
  width: 12px;
  height: 12px;
}

.footer-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-main {
  width: 50%;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-main {
  width: 220px;
  margin-right: 30px;
}

.footer-logo-cp {
  width: 170px;
}

.footer-ttl>h2 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 30px;
}

.footer-link {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-link>a {
  width: 240px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50vh;
  position: relative;
}

.footer-link>a::after {
  display: block;
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50vh;
}

.footer-link>a:not(:last-of-type) {
  margin-right: 5px;
}


.footer-link>a>img {
  width: 20px;
  margin-right: 5px;
  position: relative;
  z-index: 1;
}

.footer-link>a>span {
  position: relative;
  z-index: 1;
}

.footer-sns {
  display: flex;
  align-items: center;
}

.footer-sns>a {
  display: block;
  width: auto;
  height: 22px;
}

.footer-sns>a>img {
  width: auto;
  height: 100%;
}

.footer-sns>a:not(:last-of-type) {
  margin-right: 20px;
}

.footer-nav {
  width: auto;
  min-width: 480px;
}

.footer-nav__col {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-nav__col ul {
  list-style: none;
  padding-left: 0;
}

.footer-nav__blk>ul>li:not(:last-of-type) {
  margin-bottom: 8px;
}

.footer-nav__blk>ul>li::before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  background: #FBEAD1;
  border-radius: 50vh;
  margin-right: 5px;
}

.footer-nav__blk>ul>li>ul {
  padding-left: 20px;
}

.footer-nav__blk>ul>li>ul>li::before {
  display: inline-block;
  content: '';
  width: 10px;
  height: 1px;
  border-top: 1px solid #a6a5a5;
  margin-right: 5px;
  margin-bottom: 1px;
  vertical-align: middle;
}

.footer-nav__bottom {
  width: 100%;
}

.footer-nav__bottom>ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.footer-nav__bottom>ul>li:not(:first-of-type) {
  padding: 0 15px;
}

.footer-nav__bottom>ul>li:first-of-type {
  padding-right: 15px;
}

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

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

  /*---footer----*/
  .footer01 {
    width: 90%;
    max-width: initial;
  }
}

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

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

  #header01 {
    height: auto;
    position: fixed;
    z-index: 1001;
  }

  .global-nav__wrapper {
    width: 100%;
    max-width: initial;
    padding-left: 0;
  }

  .global-nav {
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
  }

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

  #nav-toggle {
    display: block;
  }

  /*-------------------------------------------------
    toggle
  -------------------------------------------------*/
  .navigation {
    width: 100%;
    max-width: initial;
    height: 100vh;
    background: #fff;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .navigation.is-open {
    width: 100%;
    height: 100vh;
    opacity: 1;
    display: flex;
    flex-direction: column;
    visibility: visible;
    overflow-y: scroll;
  }

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

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

  .navigation>nav {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
  }

  .navigation>nav>ul {
    width: 100%;
    max-width: 670px;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
  }

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

  .navigation>nav>ul>li>a {
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }

  .nav-current>a::after {
    display: none;
  }

  .navi__menu-inner {
    display: flex;
    justify-content: space-between;
  }

  .navi__menu-inner>span {
    display: inline-flex;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .navi__menu-inner>span.rotate-180 {
    transform: rotate(180deg);
  }

  .navi__menu-inner>a {
    display: flex;
    justify-content: flex-start;
    width: calc(100% - 24px);
    padding-bottom: 10px;
  }

  .navi__menuSub {
    display: block;
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin: 0 auto 14px auto;
    list-style: none;
    background: rgba(219, 219, 219, 0.2);
  }

  .navi__menuSub>ul {
    width: 90%;
    flex-wrap: wrap;
  }

  .navi__menuSub>ul>li {
    width: 49%;
    padding: 10px 0;
  }

  .navi__menuSub>ul>li:last-of-type {
    width: 100%;
  }

  .nav-recruit {
    padding-left: 0;
    margin-left: 0;
  }

  .nav-recruit::before {
    display: none;
  }

  .nav-insta>a {
    width: 34px !important;
  }

  /*----service---*/
  .service-chara {
    top: -90px;
    left: 5%;
    transform: rotate(-22.5deg);
  }
}

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

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

  /*---footer---*/
  .footer-nav {
    min-width: 380px;
  }
}

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

  /*---service---*/
  .service::after {
    display: block;
    content: '';
    width: 100%;
    height: 80%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    background: #FBEAD1;
  }

  .service .container {
    width: 65%;
  }

  .service-col {
    flex-direction: column;
  }

  .service-box {
    width: 100%;
  }

  .service-box:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .service-chara {
    top: -140px;
    left: -10%;
    transform: rotate(-22.5deg);
  }
}

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

  /*---service---*/
  .service .container {
    width: 70%;
    padding-top: 7.5vh;
  }

  .service-bg {
    width: 230vw;
  }

  /*---parallax---*/

  .parallax::before {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 60%;
  }

  .parallax-text {
    width: 65%;
  }

  /*---footer---*/
  .footer-body {
    width: 60%;
  }

  .footer-main {
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-col {
    flex-direction: column;
  }
}

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

  /*---service---*/
  .service .container {
    width: 80%;
  }

  /*---contact---*/

  .contact-col {
    width: 60%;
    flex-direction: column;
    margin: 0 auto;
  }

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

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

  /*---footer---*/
  .footer-body {
    width: 80%;
  }
}

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

  .container {
    width: 85%;
  }

  .global-nav__logo {
    display: flex;
  }

  .global-nav__logo-cp {
    display: block;
    width: auto;
    height: 36px;
    margin-left: 20px;
    margin-top: 5px;
  }

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

  nav {
    display: block;
  }

  .navigation>nav>ul {
    width: 80%;
    display: flex;
    margin: 0 auto 20px auto;
  }

  .navigation>nav>ul {
    width: 75%;
    max-width: initial;
  }

  .navi__menuSub>ul>li {
    width: 100%;
  }

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

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

  .navigation-cta {
    width: 80%;
    margin: 0 auto;
  }

  .navigation-cta>a {
    width: 49%;
    height: 48px;
  }

  /*---service---*/
  .service .container {
    width: 85%;
    padding-top: 9.5vh;
  }

  .serice-ttl>h2::before,
  .serice-ttl>h2::after,
  .other-ttlWrap::before,
  .other-ttlWrap::after {
    display: block;
    content: '';
    width: 25px;
    height: 25px;
    background: url('../img/common/icon-flower--ora.svg');
    background-size: contain;
    background-repeat: repeat;
  }

  .service-chara {
    top: -140px;
    left: -5%;
    transform: rotate(-22.5deg);
  }

  /*---parallax---*/

  .parallax::before {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 100%;
  }

  .parallax-text {
    width: 55%;
    top: 50%;
    left: initial;
    right: 5%;
  }

  .parallax-layer {
    width: 40%;
    position: absolute;
    top: 90%;
    right: -2.5%;
    z-index: 2;
  }

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

  .contact-layer {
    width: 27.5%;
    top: -14%;
    left: -1.5%;
  }

  .contact-chara {
    display: none;
  }

  /*---footer---*/
  .footer-body {
    width: 85%;
  }
}

@media screen and (max-width:660px) {
  nav {
    display: block;
  }

  .navigation>nav>ul {
    width: 80%;
    display: flex;
    margin: 0 auto 20px auto;
  }

}

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

  body {
    font-size: 1.4rem;
  }

  #stkr {
    display: none;
  }

  section {
    padding: 80px 0;
  }

  .ttl {
    margin-bottom: 30px;
  }

  #header01 {
    height: auto;
    position: fixed;
  }

  #heading {
    color: #a3a3a3;
  }

  #heading>h1>br {
    display: block;
  }

  #heading>h1 {
    letter-spacing: 0;
    line-height: 1.8;
  }

  .global-nav {
    height: 60px;
  }

  .global-nav__logo {
    height: 38px;
  }

  .global-nav__logo-cp {
    height: 30px;
    margin-left: 15px;
    margin-top: 3px;
  }

  .navigation>nav {
    width: 85%;
    padding: 70px 0 80px 0;
  }

  .navigation>nav>ul {
    width: 100%;
    max-width: initial;
  }

  nav>ul>li {
    display: flex;
  }

  .navi__menu {
    flex-direction: column !important;
  }

  .navigation>nav>ul>li>a {
    line-height: 2;
  }

  .navi__menuSub>ul>li {
    padding: 0 10px 0 30px;
  }

  .navi__menuSub>ul>li>a {
    padding: 10px 10px 10px 5px;
  }

  .navi__menu-inner>a {
    margin-bottom: 5px;
    line-height: 2;
  }

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

  .navi__menuSub {
    padding: 5px 0;
  }

  .navi__menuSub>ul {
    width: 100%;
  }

  .nav-insta>a {
    width: 24px !important;
  }

  .navigation-cta.header-sp {
    flex-direction: column;
    width: 80%;
    margin-left: 0;
    margin-right: initial;
  }

  .navigation-cta>a {
    width: 100%;
    font-size: 1.6rem;
  }

  .navigation-cta>a:nth-of-type(n+2) {
    margin-top: 3px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    background: #F5A613;
    border-radius: 50vh;
    top: 8px;
    right: 15px;
  }

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

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

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

  .nav-toggle>span,
  .nav-toggle.active>span,
  .scroll .nav-toggle>span {
    background: #fff;
  }

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

  .nav-toggle.active>span:nth-of-type(2) {
    left: 50%;
  }

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

  /*---ttl---*/
  .ttl>h2 {
    font-size: 2.4rem;
  }

  .ttl>p {
    font-size: 1.6rem;
  }

  .ttl>img {
    width: 60px;
    margin-left: 10px;
  }

  .ttl__sub {
    font-size: 5rem;
  }

  /*---service---*/
  .service {
    padding-bottom: 80px;
  }

  .service-lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .service-col {
    width: 105%;
    margin-left: -2.5%;
  }

  .service-col__inner-lead,
  .service-sol__list>ul>li>a>span {
    font-size: 1.4rem;
  }

  .service-chara {
    width: 80px;
    top: -100px;
    left: -2.5%;
    transform: rotate(-16.5deg);
  }

  .service-box__ttl>h3 {
    font-size: 1.6rem;
  }

  .service-bg {
    width: 300vw;
  }

  /*---parallax---*/
  #parallax::before {
    width: 155vw;
    height: 60px;
  }

  #parallax::after {
    width: 155vw;
    height: 60px;
  }

  .parallax-layer {
    width: 42.5%;
    position: absolute;
    top: 88%;
    right: -4.5%;
  }

  /*---contact---*/
  .contact::before,
  .contact::after {
    width: calc(100% - 20px);
  }

  .contact-col {
    width: 90%;
    flex-direction: column;
    margin: 0 auto;
  }

  .contact-link-btn {
    height: 90px;
  }

  .contact-col__inner-main {
    font-size: 1.6rem;
  }

  .contact-col__inner-sub {
    font-size: 1rem;
  }

  .contact-link-btn>a>img {
    width: 40px;
  }

  .contact-chara {
    width: 40px;
    position: absolute;
    top: -50px;
    right: 7.5%;
    z-index: 1;
  }

  .contact-layer {
    width: 34.5%;
    top: -20%;
    left: -3.5%;
    z-index: 1;
  }

  /*---footer---*/
  .footer-logo-main {
    width: 45%;
    margin-right: 5%;
  }

  .footer-logo-cp {
    width: 40%;
  }

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

  .footer-nav {
    width: 100%;
    min-width: initial;
  }

  .footer-nav__col {
    flex-direction: column;
  }

  .footer-nav__bottom>ul>li {
    width: 100%;
  }

  .footer-nav__bottom>ul>li:first-of-type {
    padding-right: 0;
  }

  .footer-nav__bottom>ul>li:not(:first-of-type) {
    padding: 0;
  }

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