@charset "utf-8";

/* define
--------------------------------------*/
:root {
  --maincolor: #2e2e2e;
  --txtcolor: #8E9187;
  --btncolor: #8ec1be;
  --bordercolor: #f1f1f1;
  --hovercolor: #41aea7;
}

/* reset
--------------------------------------*/
html {
  color: #000;
  background: #FFF
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

fieldset,
img {
  border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal
}

ol,
ul {
  list-style: none
}

caption,
th {
  text-align: left
}

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

q:before,
q:after {
  content: ''
}

abbr,
acronym {
  border: 0;
  font-variant: normal
}

sup {
  vertical-align: text-top
}

sub {
  vertical-align: text-bottom
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}


/* common
--------------------------------------*/
html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 58px; */
  position: relative;
  word-break: break-all;
}

body {
  font-family: 'Noto Sans JP', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
  position: relative;
}

body.active {
  overflow-y: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  word-break: break-all;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  text-align: -internal-center;
}

td {
  display: table-cell;
  vertical-align: inherit;
}

strong {
  font-weight: bold;
}

.notoserif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.fade_up {
  transform: translateY(30px);
  transition: all ease .4s;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -webkit-transition: all ease .4s;
  perspective: 1000;
}

.fade_up.scrolled {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.fade_left {
  transform: translateX(-30px);
  transition: all ease .4s;
  -webkit-transform: translateX(-30px);
  -webkit-transition: all ease .4s;
  opacity: 0;
}

.fade_left.scrolled {
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.video {
  height: 0;
  overflow: hidden;
  padding-bottom: 62.25%;
  position: relative;
}

.video iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.center {
  text-align: center;
}

.tabArea {
  width: 80%;
  margin: 0 auto;
  max-width: 800px;
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.tabArea.active {
  opacity: 1;
  height: auto;
  visibility: visible;
}

.lum-lightbox-image-wrapper img {
  width: 76% !important;
  max-height: 76vh !important;
  object-fit: contain;
  margin: 0 auto;
}

.lum-lightbox {
  z-index: 2000;
}

.lum-close-button {
  right: 60px !important;
  top: 60px !important;
}

.arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: .6em;
  height: .6em;
  margin-top: -3px;
  margin-left: 10px;
  transform: translateX(0%) rotate(45deg);
}

#topBtn .arrow {
  color: #fff;
}

.arrow.ver2 {
  width: .4em;
  height: .4em;
}

.arrow::before,
.arrow::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.arrow.top {
  transform: translateX(0%) rotate(-45deg);
}

.cmn__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background-color: #d0d0d0;
  transition: all ease .4s;
}

.cmn__arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #d0d0d0;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.cmn__btn a:hover .cmn__arrow {
  transform: translate(-0%, -0%);
}

.cmn__ttl {
  color: #7A7A7A;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 8px;
}

.cmn__ttl.ver2 {
  text-align: left;
}

.cmn__ttl span {
  display: block;
  font-size: .8rem;
  line-height: 180%;
  letter-spacing: .08em;
}

.cmn__txt {
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 200;
  line-height: 170%;
  letter-spacing: .05em;
  transition-delay: .3s;
  word-break: break-word;
}

.fbc-page .fbc-wrap .fbc-items li {
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 200;
  line-height: 170%;
  letter-spacing: .05em;
  transition-delay: .3s;
  word-break: break-word;
}

.cmn__txt.ver2 {
  line-height: 150%;
}

.cmn__box {
  padding: 20px 0px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.cmn__box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.single img {
  margin: 30px 0;
}


.cmn__dl {
  border-bottom: 1px solid var(--bordercolor);
}

.cmn__dl a {
  width: 100%;
}

.cmn__dt {
  width: 30%;
  padding: 15px 0;
  padding-left: 50px;
  color: #7A7A7A;
  font-size: .9rem;
  font-weight: 200;
  letter-spacing: .06em;
  line-height: 170%;
  box-sizing: border-box;
}

.cmn__dd {
  width: 70%;
  padding: 15px 0;
  color: #7A7A7A;
  font-size: .9rem;
  font-weight: 200;
  letter-spacing: .06em;
  line-height: 150%;
  box-sizing: border-box;
}

.cmn__dd a {
  color: var(--txtcolor);
  font-size: .96rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .04em;
  text-decoration: underline;
}

.cmn__link a {
  color: #fff;
  background: rgb(136 199 196);
  display: inline-block;
  width: 50%;
  min-width: 200px;
  padding: 14px 20px;
  box-sizing: border-box;
  border-radius: 40px;
  text-align: center;
  letter-spacing: .07em;
  font-size: .9rem;
  transition: all ease .4s;
}

.cmn__link.center a {
  width: 30%;
  min-width: 200px;
  font-family: "Noto Serif JP", serif;
}

.cmn__link a:hover {
  background: var(--hovercolor);
}

.cmn__page p {
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 200;
  line-height: 170%;
  letter-spacing: .05em;
  transition-delay: .3s;
  word-break: break-word;
  margin-bottom: 30px;
}

.cmn__page h1 {
  font-family: "Noto Serif JP", serif;
  color: #4f4f4f;
  font-size: 1.5rem;
  letter-spacing: .12em;
  margin-bottom: 20px;
  font-weight: 200;
  border-bottom: 1px solid var(--bordercolor);
  padding-bottom: 12px;
}

.cmn__page h2 {
  font-family: "Noto Serif JP", serif;
  color: #4f4f4f;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.cmn__page.ver2 h2 {
  font-family: initial;
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 200;
  letter-spacing: .05em;
  margin-bottom: initial;
}

.cmn__page h3 {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: 20px;
  padding: 6px 20px;
  border-radius: 6px;
  background: rgb(136 199 196);
  color: #fff;
}

.cmn__page dl {
  color: var(--txtcolor);
  border-bottom: 1px solid var(--bordercolor);
}

.cmn__page dl:nth-child(2n) {
  background: #fbfbfb;
}

.cmn__page dl:last-child {
  border-bottom: none;
}

.cmn__page dt {
  width: 20%;
  padding: 15px 20px;
  color: #7A7A7A;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 170%;
  box-sizing: border-box;
}

.cmn__page dd {
  color: #7A7A7A;
  font-size: .9rem;
  font-weight: 200;
  letter-spacing: .06em;
  line-height: 150%;
  box-sizing: border-box;
  width: 76%;
  padding: 15px;
  word-break: break-word;
}

.cmn__index::after {
  content: '';
  display: block;
  width: 30%;
}

.cmn__index li {
  width: 30%;
  margin-bottom: 30px;
  transition: all ease .4s;
}

.cmn__index li:hover {
  opacity: .7;
}

.cmn__index img {
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cmn__index p.cat {
  color: #fff;
  background: var(--btncolor);
  border-radius: 2px;
  display: inline-block;
  padding: 0 20px;
  font-size: .8rem;
  margin-bottom: 6px;
}

.cmn__img {
  border: 1px solid var(--bordercolor);
  padding: 8px;
  box-sizing: border-box;
  width: 90%;
  margin: 20px auto 40px;
}

.cmn__img img {
  display: block;
}

.cmn__img span {
  color: #5e5e5e;
  display: block;
  text-align: center;
  padding-top: 6px;
  font-weight: 300;
  font-size: .8rem;
  letter-spacing: .14em;
}

.cmn__form {
  width: 70%;
  margin: 60px auto 50px;
}

.cmn__form p {
  margin-bottom: 10px;
  line-height: 200%;
}

.cmn__form input {
  display: block;
  width: 100%;
  padding: 7px 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cmn__form .check input {
  display: inline;
  width: auto;
  margin-right: 10px;
}

.cmn__form .check .wpcf7-list-item {
  margin: 0 !important;
}

.cmn__form textarea {
  display: block;
  width: 100%;
  padding: 4px 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cmn__table table {
  width: 100%;
}

.cmn__table table,
.cmn__table td,
.cmn__table th {
  border: 1px solid #cecece;
  border-collapse: collapse;
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: .05em;
  transition-delay: .3s;
  word-break: break-word;
  padding: 10px 20px;
}

.cmn__table th {
  width: 50%;
  background: rgb(234 245 245);
}

.cmn__table td {
  width: 50%;
}

.cmn__table td a {
  color: var(--btncolor);
  text-decoration: underline;
}

.cmn__table.ver2 th {
  width: 30%;
}

.cmn__table.ver2 td {
  width: 70%;
}

.cmn__list {
  width: 100%;
  justify-content: flex-start;
  margin: 30px 0;
}

.cmn__list li {
  margin: 15px;
  box-sizing: border-box;
}

.cmn__list li img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}




/* loading
--------------------------------------*/
.loading {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
  height: 100vh;
  z-index: 100000;
  display: flex;
  align-items: center;
  text-align: center;
}

.loading p {
  width: 12vw;
  margin: 0 auto;
}

.loading.ok {
  overflow: hidden;
}

body:has(.loading.show) {
  overflow: hidden;
}

body:has(#header.show) {
  overflow: hidden;
}


/* animation
--------------------------------------*/
.gradation {
  background: -webkit-linear-gradient(45deg, rgb(170 170 170) 20%, #616161, #8d8d8d 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: GradietionAnimation 9s ease infinite;
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0% 0%
  }

  50% {
    background-position: 100% 0%
  }

  100% {
    background-position: 0% 0%
  }
}

.bggradation1 {
  background: -webkit-linear-gradient(45deg, rgb(136 199 196) 20%, rgb(136 199 196), rgb(188 215 214) 90%);
}


/* menu__nav
--------------------------------------*/
.menu__nav {
  align-items: center;
}

.menu__nav li {
  text-align: center;
  border-bottom: 1px solid rgb(240 240 240);
}

.menu__nav li a {
  display: block;
  color: #111;
  font-size: .9rem;
  font-weight: 200;
  padding: 16px 0px;
  box-sizing: border-box;
  position: relative;
  letter-spacing: .14em;
  margin-bottom: .4%;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.menu__nav li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

.menu__nav li a:hover::after {
  width: 100%;
}

.menu__nav li a:hover {
  opacity: .7;
}

#hamburger {
  width: 1.3rem;
  position: absolute;
  z-index: 1000;
  left: 18px;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  cursor: pointer;
}

.page #header {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--bordercolor);
}

#hamburger .toggle {
  display: block;
  position: relative;
  width: 1.3rem;
  height: 1.2rem;
}

#hamburger .toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #929292;
  position: absolute;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

.show #hamburger .toggle i {
  background-color: #929292;
}

#hamburger .toggle i:nth-child(1) {
  top: 0;
}

#hamburger .toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60%;
  left: 0;
}

#hamburger .toggle i:nth-child(3) {
  bottom: 0;
}

.show .toggle i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
  -webkit-transform: translateY(10px) rotate(-45deg);
}

.show .toggle i:nth-child(2) {
  opacity: 0;
}

.show .toggle i:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
  -webkit-transform: translateY(-8px) rotate(45deg);
}

#menu {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all ease .6s;
  -webkit-transition: all ease .6s;
  opacity: 0;
  visibility: hidden;
  background: rgb(246 246 246 / 80%);
  transform: translateX(-100%);
}

.menu__logo {
  width: 60%;
  margin: 0 auto 60px;
}

.menu__box {
  width: 30vw;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0%);
  transition: all ease .6s;
  -webkit-transition: all ease .6s;
  transition-delay: .1s;
  transform: translateX(-100%);
  height: 100vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
}

.show .menu__box {
  width: 30vw;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

.show #menu {
  opacity: 1;
  visibility: visible;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(0%);
}

#menu ul {
  display: none;
}

.show #menu ul {
  display: block;
  box-sizing: border-box;
  width: 80%;
}

#global {
  width: 1.6rem;
  position: absolute;
  z-index: 1000;
  right: 18px;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  cursor: pointer;
}

#language {
  opacity: 0;
  height: 0;
  visibility: hidden;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50px;
  transition: all ease .4s;
}

#language ul {
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 4px 10px;
  box-sizing: border-box;
}

#language.active {
  opacity: 1;
  height: auto;
  visibility: visible;
}

.balloon1-top p {
  margin: 0;
  padding: 0;
}

#language ul a {
  font-size: .9rem;
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  border-bottom: 1px solid #ebebeb;
  letter-spacing: .05em;
  padding: 6px 16px;
}

#language ul li:last-child a {
  border-bottom: none;
}


/* topBtn
--------------------------------------*/
#topBtn.show {
  opacity: 1;
  transition: all ease .4s;
}

#topBtn {
  opacity: 0;
  position: fixed;
  z-index: 100;
  right: 1.5%;
  bottom: 2vh;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

#topBtn a {
  display: flex;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #d0e3e3;
  border-radius: 50%;
  transition: all ease .4s;
}

#topBtn a:hover {
  background: var(--hovercolor);
}

#topBtn span {
  margin: 0 auto;
  transition: all ease .4s;
}

#topBtn.scroll-down {
  transition: 0.8s ease 0.1s;
  transform: translateY(150%);
}

#topBtn.scroll-up {
  transition: 0.8s ease 0.1s;
  transform: translateY(0);
}


/* header
--------------------------------------*/
#header {
  width: 100%;
  z-index: 1000;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header.trigger {
  background: rgba(255, 255, 255, .9);
  /* border-bottom: 1px solid var(--bordercolor); */
}

#header.scroll-down {
  transition: 0.8s ease 0.1s;
  transform: translateY(-100%);
}

#header.scroll-up {
  transition: 0.8s ease 0.1s;
  transform: translateY(0);
}

.h__box {
  position: relative;
  z-index: 1;
}

.h__inner {
  width: 98%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h__logo {
  width: 24%;
  max-width: 220px;
  margin: 0 auto;
  transition: all ease .4s;
}

.h__logo img {
  padding: 20px 28px;
  box-sizing: border-box;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

.h__logo img:hover {
  opacity: .7;
}


/* mv
--------------------------------------*/
#mv {
  border-bottom: 1px solid var(--bordercolor);
  position: relative;
}

#mv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .24;
}

.mv__ul {
  height: 100%;
}

.mv__li {
  position: relative;
  height: calc(100vh) !important;
}

.mv__box {
  width: 88vw;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.mv__catch {
  width: 70%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mv__txt {
  color: #606364;
  font-size: 2.7rem;
  font-weight: 200;
  margin-bottom: 20px;
  letter-spacing: .1em;
  line-height: 140%;
}

.mv__txt small {
  font-size: 2rem;
}

.mv__sub {
  font-size: .9rem;
  width: 60%;
  color: #989898;
  font-weight: lighter;
  letter-spacing: .1em;
  line-height: 180%;
  margin-bottom: 40px;
}

.mv__img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 36%;
  margin: auto;
  z-index: 1;
}

.mv__btn a {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  display: block;
  background: var(--btncolor);
  width: 30%;
  text-align: center;
  padding: 12px 0;
  box-sizing: border-box;
  border-radius: 30px;
  font-weight: 300;
  letter-spacing: .1em;
  transition: all ease .4s;
}

.mv__btn a:hover {
  background: var(--hovercolor);
}

.mv__img {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  height: 540px;
  margin: auto;
  z-index: 1;
}

.mv__box2 {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__bg:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #d7ecec;
  z-index: 1;
  animation: roundAnimation1 2s ease infinite;
}

.mv__bg:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  background: #bcd5d0;
  animation: roundAnimation2 3s ease infinite;
  z-index: 2;
}

.mv__bg:nth-child(3) {
  position: absolute;
  bottom: 0;
  margin: auto;
  left: 10%;
  width: 70%;
  height: 60%;
  background: url(../img/sample/sample7.webp) no-repeat;
  background-size: cover;
  animation: roundAnimation3 4s ease infinite;
  z-index: 3;
}


@keyframes roundAnimation1 {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 28% 72% 72% 29% / 33% 34% 68% 72%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes roundAnimation2 {
  0% {
    border-radius: 53% 47% 70% 30% / 45% 48% 52% 55%;
  }

  50% {
    border-radius: 51% 52% 76% 29% / 43% 50% 54% 53%;
  }

  100% {
    border-radius: 53% 47% 70% 30% / 45% 48% 52% 55%;
  }
}

@keyframes roundAnimation3 {
  0% {
    border-radius: 75% 26% 69% 28% / 70% 24% 52% 28%;
  }

  50% {
    border-radius: 73% 28% 71% 33% / 68% 26% 54% 32%;
  }

  100% {
    border-radius: 75% 26% 69% 28% / 70% 24% 52% 28%;
  }
}


/* infinity
--------------------------------------*/

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
  padding: 30px 0;
}

.scroll-infinity__item>img {
  width: 100%;
  opacity: .3;
}


/* about
--------------------------------------*/
#about {
  padding: 140px 0 160px;
  border-bottom: 1px solid var(--bordercolor);
}

.about__catch {
  font-size: 1.6rem;
  font-weight: 200;
  text-align: center;
  letter-spacing: .15em;
  margin-bottom: 40px;
}

.about__txt {
  color: #606060;
  width: 50%;
  margin: 0 auto 60px;
  font-size: .95rem;
  font-weight: 200;
  letter-spacing: .05em;
  line-height: 220%;
  box-sizing: border-box;
  text-align: center;
}

.cmn__btn .cercle {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
}

.cmn__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10%;
  margin: 0 auto;
  max-width: 120px;
  position: relative;
  color: #d0d0d0;
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.cmn__btn a img {
  display: inline-block;
  width: 40px;
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.cmn__btn.v2 {
  width: 88%;
  margin: 0 auto;
}

.cmn__btn.v2 .cercle {
  border: none;
}

.cmn__btn.v2 a {
  font-weight: 300;
  margin: initial;
  margin-left: auto;

}


/* point
--------------------------------------*/
#point {
  padding: 120px 0 140px;
  background: url(../img/bg1.webp);
  background-size: 100% auto;
}

.point__box {
  width: 100%;
  max-width: 1080px;
  margin: 100px auto 40px;
}

.point__single {
  align-items: center;
  background: #fff;
}

.point__single:nth-child(2n) {
  flex-direction: row-reverse;
}

.point__single:last-child {
  border-bottom: none;
}

.point__img {
  width: 50%;
}

.point__img img {
  aspect-ratio: 5 / 3.8;
  object-fit: cover;
}

.point__txt {
  width: 50%;
  box-sizing: border-box;
  padding: 50px;
}

.point__h3 {
  font-family: "Noto Sans JP", sans-serif;
  color: #6d6d6d;
  font-size: 1.3rem;
  letter-spacing: .12em;
  margin-bottom: 20px;
  font-weight: 300;
}


/* works
--------------------------------------*/
#works {
  padding: 120px 0 140px;
}

.works__ul {
  width: 90%;
  margin: 60px auto;
}

.works__ul li {
  padding: 0 20px;
  box-sizing: border-box;
  transition: all ease .4s;
}

.works__ul li:hover {
  opacity: .8;
}

.works__ul li img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.works__meta {
  padding: 10px 0px;
  box-sizing: border-box;
}

.works__meta p {
  font-size: .9rem;
  font-weight: lighter;
  letter-spacing: .1em;
  color: #666;
}

.works__meta h3 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .07em;
  line-height: 130%;
}

#works .cat {
  color: #fff;
  background: var(--btncolor);
  border-radius: 2px;
  display: inline-block;
  padding: 1px 20px;
  font-size: .8rem;
  margin-bottom: 6px;
}

#works .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#works .swiperBox {
  width: 90%;
  margin: 60px auto;
}

/* service
--------------------------------------*/
#service {
  background: url(../img/bg1.webp);
  padding: 100px 0;
}

.service__box {
  margin-top: 80px;
  margin-bottom: 20px;
  position: relative;
}

.service__box::after {
  content: '';
  display: block;
  width: 31%;
}

.service__ttl {
  font-family: "Noto Sans JP", sans-serif;
  color: #6e6e6e;
  letter-spacing: .1em;
  margin-bottom: 6px;
  line-height: 180%;
}

.service__icon {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  margin-bottom: 6px;
}

.icon .service__icon {
  margin-bottom: 0;
}

.service__single {
  width: 31%;
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.service__single:nth-child(3n+2) {
  transition-delay: .3s;
}

.service__single:nth-child(3n) {
  transition-delay: .6s;
}


/* portfolio
--------------------------------------*/
#portfolio {
  padding: 120px 0 140px;
  border-bottom: 1px solid var(--bordercolor);
}

.portfolio__nav {
  width: 60%;
  margin: 60px auto 40px;
}

.portfolio__li {
  width: 31%;
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: .9rem;
  color: #666;
  transition: all ease .4s;
  cursor: pointer
}

.portfolio__li:hover {
  color: #fff;
  background: rgb(188 215 214);
  border: 1px solid #fff;
}

.portfolio__li.active {
  color: #fff;
  background: rgb(188 215 214);
  border: 1px solid #fff;
}

.portfolio__area {
  width: 70%;
  margin: 0 auto;
}

.portfolio__link {
  margin: 60px auto;
  text-align: center;
  max-width: 600px;
}


/* topics
--------------------------------------*/
#topics {
  padding: 120px 0 140px;
}

.topics__box {
  width: 80%;
  max-width: 720px;
  margin: 80px auto;
}


/* contact
--------------------------------------*/
#contact {
  background: rgb(232 241 241);
  padding: 160px 0;
}

.contact__box {
  width: 60%;
  padding: 60px;
  box-sizing: border-box;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}

.wpcf7-submit {
  color: #fff;
  background: rgb(136 199 196);
  width: 50%;
  min-width: 200px;
  padding: 14px 20px;
  box-sizing: border-box;
  border-radius: 40px;
  text-align: center;
  letter-spacing: .07em;
  font-size: .9rem;
  transition: all ease .4s;
  margin: 0 auto;
  text-align: center;
  display: block;
  margin-top: 40px;
}


/* footer
--------------------------------------*/
#footer {
  color: #000000;
  background: #ffffff;
  padding: 100px 0 40px;
  border-top: 1px solid var(--bordercolor);
}

.f__box {
  padding-bottom: 120px;
}

.f__single {
  width: 22%;
}

.f__single:first-child {
  width: 44%;
}

.f__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  padding: 0 4px;
  font-weight: 300;
  color: #444444;
  letter-spacing: .27em;
  margin-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.f__li a {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  color: #111;
  font-size: .9rem;
  font-weight: 200;
  letter-spacing: .1em;
  line-height: 170%;
  padding: 8px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--bordercolor);
}

.f__logo {
  width: 40%;
  max-width: 170px;
  margin-bottom: 30px;
}

.f__logo img {
  width: 100%;
}

.f__copy {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  font-weight: lighter;
  padding: 6px 0;
  text-align: center;
}

























/* page
--------------------------------------*/
.sidebar li {
  padding: 10px 0;
  padding-right: 20px;
}

.sidebar li a {
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 200;
  line-height: 170%;
  letter-spacing: .05em;
  transition-delay: .3s;
  word-break: break-word;
}

/* .cmn__box .cmnTxt {
  margin-bottom: 30px;
} */

.twocolum {
  align-items: center;
}

.twocolumL {
  width: 48%;
  padding: 30px 0;
  box-sizing: border-box;
}

.twocolumR {
  width: 48%;
  padding: 30px 0;
  box-sizing: border-box;
}

.l20 {
  width: 20%;
}

.l20 img {
  max-width: 100%;
}

.r70 {
  width: 73%;
}

.round {
  aspect-ratio: 1 /1;
  object-fit: cover;
  border-radius: 50%;
}

#bread {
  padding: 140px 0 40px;
  margin-bottom: 40px;
}

.aioseo-breadcrumbs {
  width: 82%;
  max-width: 880px;
  overflow: hidden;
  margin: 0 auto;
}

.aioseo-breadcrumbs .aioseo-breadcrumb {
  float: left;
  padding-right: 10px;
  margin-right: 10px;
  color: var(--txtcolor);
  font-size: .9rem;
  font-weight: 200;
  line-height: 170%;
  letter-spacing: .05em;
  transition-delay: .3s;
  word-break: break-word;
}

.cmn__page {
  width: 82%;
  max-width: 880px;
  margin: 0 auto 120px;
  padding-bottom: 60px;
}

.info__box {
  margin: 40px 0;
}

.fbc-page {
  width: 82%;
  max-width: 880px;
  margin: 0 auto;
}

.icon {
  display: flex;
  align-items: center;
}

.icon img {
  display: inline-block;
  margin-right: 16px;
}

.wpcf7-form-control div {
  width: 100%;
}

.wpcf7 .wpcf7-recaptcha iframe {
  width: 100%;
}

.fbc-page .fbc-wrap .fbc-items li:first-child {
  padding-left: 0 !important;
}


/* swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.swiper a img {
  width: 100%;
  aspect-ratio: 5 / 3.2;
  object-fit: cover;
}

.swiper span {
  display: block;
  padding: 8px 0;
  text-align: center;
  color: #525252 !important;
  font-weight: 400;
  transition: all ease .4s;
}

.swiper span a {
  display: block;
  text-align: center;
  color: #525252 !important;
  font-weight: 400;
  transition: all ease .4s;
}

.swiper span a img {
  display: inline-block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 8px;

}

.swiper span a:hover {
  opacity: .7;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 60px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  transform: scale(.5);
}

.aioseo-breadcrumb-separator {
  float: left;
  padding-right: 20px;
}