@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,700;1,300&display=swap');


@media screen and (min-width: 800px) {
  .SP {
    display: none;
  }
}

@media screen and (max-width: 799px) {
  .PC {
    display: none;
  }
}

:root {
  --main-black-color: #333333;
  --main-darkgray-color: #777;
  --main-gray-color: #ddd;
  --main-lightgray-color: #f4f4f4;
  --main-blue-color: #0089c4;
  --main-darkblue-color: #3a6c96;
  --main-lightblue-color: #59b9e3;
  --main-yellow-color: #dfc830;
  --main-green-color: #00c417;
  --main-hover-color: #59b9e3;
  --main-red-color: #de6b6b;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Kosugi Maru", sans-serif, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--main-black-color);
  background: #fff;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

a {
  text-decoration: none;
  outline: none;
  color: var(--main-blue-color);
}

a:hover {
  transition: color 0.3s;
  color: var(--main-hover-color);
}

.link {
  text-decoration: underline;
}

.link:hover {
  color: var(--main-hover-color);
}

.ac {
  text-align: center;
}

.textshow {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  color: #aa8f7b;
  font-family: 'Josefin Sans', sans-serif;
}

.textshow span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.textshow.-visible,
.textshow.-visible span {
  transform: translate(0, 0);
}


/*アニメーション定期*/
@keyframes flowing-anim {
  0% {
    width: 0;
  }

  80% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

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

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

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 1200ms, transform 1200ms;
}

.fadein.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein2 {
  opacity: 0;
  transform: scale(0.96);
  border-radius: 300px !important;
  transition: all 1500ms;
}

.fadein2.is-animated {
  opacity: 1;
  border-radius: 30px !important;
  transform: scale(1);
}

.fadein3 {
  opacity: 0;
  transition: all 1500ms;
}

.fadein3.is-animated {
  opacity: 1;
}

.fadein-r {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1500ms;
}

.fadein-r.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-l {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1500ms;
}

.fadein-l.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

.slidedown {
  opacity: 0;
  transform: translate(0, -80px);
  transition: all 200ms;
}

.slidedown.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

.zoomin {
  opacity: 0;
  transform: scale(0.7, 0.7);
  transition: opacity 700ms, transform 700ms;
}

.zoomin.is-animated {
  opacity: 1;
  transform: scale(1, 1);
}


/*
 * 共通要素
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
  position: relative;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes menu-container-appeared {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes menu-container-leaved {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#animation_container img {
  width: calc(100% - 8vw);
  margin: 140px auto 0;
  border-radius: 50px;
  object-fit: cover;
}

#animation_container video {
  width: calc(100%);
  margin: 140px auto 0;
  border-radius: 30px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

#home #animation_container {
  width: calc(100% - 8vw);
  margin: 140px auto 0;
  border-radius: 30px;
  background: #f2f4f5 url('../img/paper.jpg');
  background-size: cover;

}

.cmn-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: clamp(1.8rem, 2.9vw, 3.8rem);
  font-weight: normal;
  color: var(--main-blue-color);
  margin: 4vw auto;
}

.cmn-title-eng {
  display: block;
  font-size: clamp(1rem, -1rem + 4vw, 2rem);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--main-lightblue-color);
  text-align: center;
  line-height: 1;
  padding-top: 0.3em;
}

.cmn-main {
  padding: 0 4vw 4vw;
}

.cmn-section {
  padding: 0 0 4vw;
}

.googlemap {
  display: inline-block;
}

.cmn-lead {
  text-align: center;
  margin: 5em 4vw 5em;
}

.cmn-kome {
  font-size: 75%;
}

/*navi*/

.nav-header {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 1003;
  transition: all 0.3s;
}

.nav-header.fixed {
  position: fixed;
  top: 0;
  background: #fff;
  box-shadow: 0px 10px 10px -6px rgba(100, 100, 100, 0.1);
}

.nav-header__container {
  display: flex;
  /*align-items: center;*/
  justify-content: flex-end;
  max-width: calc(100% - 8vw);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-header__logo {
  font-weight: normal;
  font-size: 8rem;
  align-items: center;
  margin: 0 auto 0 0;
  font-size: 1.0rem;
  min-width: 100px;
  text-align: left;
  transition: all 0.5s;
  display: flex;
}

.nav-header__logo:hover img {
  /*opacity: 0.5;*/
}

.nav-header__logo .nav-header__logo-img,
.nav-drawer__logo-img {
  animation-delay: 0s;
  animation: stroke3b 1s ease-in-out both;
  stroke-width: 1px;
  stroke-dasharray: 200px;
  stroke-dashoffset: 200px;
  fill: var(--main-blue-color);
}


.nav-header__logo:hover .nav-header__logo-img,
a:hover .nav-drawer__logo-img {
  animation-delay: 0s;
  animation: stroke3 1s ease-in-out both;
  stroke: var(--main-blue-color);
  fill: #ccc;
  stroke-width: 1px;
  stroke-dasharray: 200px;
  stroke-dashoffset: 200px;
}

@keyframes stroke3b {
  0% {
    fill: var(--main-blue-color);
    stroke-dashoffset: 0;
  }

  50% {
    stroke-width: 0.5px;
  }

  100% {
    fill: var(--main-blue-color);
    stroke-dashoffset: 200px;
    stroke-width: 0;
  }
}

@keyframes stroke3 {
  0% {
    stroke-dashoffset: 200px;
  }

  50% {}

  100% {
    fill: #fff;
    stroke-dashoffset: 0;

  }
}

@keyframes stroke5 {
  0% {
    fill: transparent;
    stroke-dashoffset: 0;
  }

  50% {
    fill: transparent;
    stroke-width: 0.5px;
  }

  100% {
    fill: #191315;
    stroke-dashoffset: 200px;
    stroke-width: 0;
  }
}

.nav-header__logo-img {
  display: inline-block;
  min-width: 240px;
}

.nav-header__logo-text {
  margin-left: 2.5em;
  color: var(--main-black-color);
  white-space: nowrap;
}

.nav-header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 2vw 0 0;
  padding: 0;
  gap: 2em;
}

.nav-header__menu-tel {
  display: none;
}

.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.nav-header__link {
  height: 100%;
  text-align: center;
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  letter-spacing: 0.03em;
  font-weight: 700;
  white-space: nowrap;
  color: var(--main-blue-color);
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .nav-header__link {
  font-weight: 500;
}

.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: -5px;
  transform: translateY(50%);
  width: 2px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  content: "";
  -ms-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}


.nav-header__link04 {
  margin-left: 20px;
  margin-top: 10px;
  width: 150px;
  height: 170px;
  background: var(--main-lightblue-color);
  color: #fff;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.5s;
}

.fixed .nav-header__link04 {
  height: 70px;
  margin-top: 0;
  font-size: 1.4rem;
  gap: 0;
  border-radius: 0;
}

.fixed .nav-header__link04 img {
  width: 30px;
}

.nav-header__link04:after {
  display: none;
}

.nav-header__link04:hover {
  background: var(--main-blue-color);
  color: #fff;
  transition: all 0.5s;
}

#page01 .nav-header__menu-item:nth-child(1) .nav-header__link,
#page02 .nav-header__menu-item:nth-child(2) .nav-header__link,
#page03 .nav-header__menu-item:nth-child(3) .nav-header__link {
  color: var(--main-darkgray-color);
  pointer-events: none;
}

#page01 .nav-header__menu-item:nth-child(1) .nav-header__link:after,
#page02 .nav-header__menu-item:nth-child(2) .nav-header__link:after,
#page03 .nav-header__menu-item:nth-child(3) .nav-header__link:after {
  opacity: 1;
  width: calc(100%);
  background-color: var(--main-darkgray-color);
}

.nav-header__link:hover::after {
  opacity: 1;
  width: calc(100%);
  background: var(--main-lightblue-color);
}



.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
    text-shadow .2s,
    background-color .2s,
    border-color .2s,
    opacity .2s;
  background-color: #08aeb0;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}

.nav-header__contact:hover {
  background-color: #079698;
}

.nav-header__toggle {
  z-index: 1020;
  position: fixed;
  top: 60px;
  right: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6.5rem;
  height: auto;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: none;
}


.nav-header__toggle-line {
  -webkit-transition: all 0.5s;
  display: block;
  width: 80%;
  height: 2px;
  border-radius: 8px;
  background: var(--main-blue-color);
}

.nav-header__toggle-line:nth-child(2) {
  margin: 18% 0px;
}



.nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(2) {
  display: none;
}

.nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(1) {
  transform: rotate(25deg);
  top: 1px;
  position: relative;
}

.nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(3) {
  transform: rotate(-25deg);
  top: -1px;
  position: relative;
}

@media (max-width: 1280px) {
  .nav-header__logo-text {
    display: none;
  }
}

@media (max-width:1080px) {
  .nav-header__toggle {
    top: calc(4vw + 15px);
  }

  #animation_container img {
    margin-top: calc(4vw + 80px);
  }

  .nav-header__link04 {
    width: 130px;
    margin-left: 0;
  }
}

@media (max-width:800px) {
  .nav-header__toggle {
    display: block;
  }

  .nav-header__menu {
    display: none;
  }

  .nav-header {
    top: 4vw;
  }

  .nav-header.fixed {
    display: none;
  }

}

@media (max-width:480px) {
  .nav-header__toggle {
    width: 4.0rem;
    height: 3.5rem;
    top: calc(4vw + 10px);
  }

  .js-nav-drawer-show {
    top: calc(4vw + 15px);
  }

  .nav-header__logo-img {
    min-width: 200px;
  }

  #animation_container img {
    margin-top: 70px;
  }

  .cmn-title img {
    width: 35px;
  }

  .fadein2.is-animated {
    border-radius: 20px !important;
  }
  .cmn-lead {
    margin-bottom:0;
  }
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1010;
}

.nav-drawer__container {
  z-index: 1000;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 4vw;
  min-width: 300px;
  background: #fff;
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;

}

.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}

.nav-drawer__logo {
  font-weight: 700;
  font-size: 1.0rem;
  text-align: center;
  min-width: 200px;
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
  text-align: left;
}

.nav-drawer__logo-img {
  margin-right: 50px;
  transition: all 0.5s;
  min-width: 200px;
}

a:hover .nav-drawer__logo-img {
  opacity: 0.7;

}

.nav-header__bottomtext-text2 {
  font-family: 'AvenirNextLTPro-Bold', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  border-bottom: solid 1px var(--main-black-color);
}

.nav-header__bottomtext {
  position: absolute;
  bottom: 50px;
  font-weight: 700;
  font-size: 1.4rem;
}


.nav-header__bottomtext-text1 span {
  text-decoration: underline;
}

.icon__map::before {
  position: relative;
  bottom: -4px;
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../img/icon-map.svg') no-repeat;
}

.nav-drawer__menu {
  display: flex;
  justify-content: space-between;
  margin: 70px 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.nav-drawer__menu-item {
  width: 18%;
}


.nav-drawer__menu--sub {
  padding: 2em 0 2em 0;
}

.nav-drawer__menu--sub li {
  font-size: 1.5rem;
}

.nav-drawer__menu--sub a:hover {
  color: var(--main-hover-color);
}

.nav-drawer__menu--sub li a:hover::before {
  background: var(--main-blue-color);
}

.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 0 1em 0;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.nav-drawer__menu--sub .nav-drawer__link {
  padding: 0.2em 0;
  font-weight: 500;
}

.nav-drawer__link::after {
  content: ' ';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--main-black-color);
  position: relative;
  bottom: calc(-1em - 1px);
  left: 0;
  transition: all 0.2s;
}

.nav-drawer__menu--sub .nav-drawer__link::after {
  bottom: 0;
  background: var(--main-hover-color);
}

.nav-drawer__link:hover::after {
  width: 100%;
}

.nav-drawer__link-main {
  display: block;

}

.nav-drawer__link:hover .nav-drawer__link-main::before {
  background: var(--main-blue-color);
}

.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}


.nav-drawer__menu-button {
  position: absolute;
  right: 180px;
  top: 72px;
  font-family: 'AvenirNextLTPro-Bold', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
  .nav-drawer__logo {
    margin: 0
  }

  .nav-drawer__menu-button {
    top: 55px;
  }

  .nav-drawer__container {
    padding: 50px 6vw;
  }

  .nav-drawer__logo-img {
    width: 66px;
    margin-right: 30px;
  }
}

@media (max-width:800px) {
  .nav-drawer__logo {
    flex-wrap: wrap;
  }

  .nav-drawer__menu-item {
    width: 100%;
  }

  .nav-drawer__title {
    font-size: 1.4rem;
    margin-top: 0.5em;
    color: var(--main-lightblue-color);
    display: block;
  }

  .nav-drawer__menu {
    display: block;
    margin: 20px 0;
    overflow-y: unset;
  }

  .nav-drawer__link,
  .nav-drawer__menu--sub li {
    padding: 20px 15px;
    border: solid 1px #ddd;
    border-bottom: none;
    font-size: 1.5rem;
    font-weight: bold;
    background: #fff;
  }

  .nav-drawer__menu--sub {
    display: none;
  }

  .nav-drawer__container {
    padding: 4vw;
    min-width: unset;
    overflow-y: scroll;
  }



  .nav-drawer__logo-img {
    width: 60px;
    margin-right: 15px;
  }

  .nav-drawer__menu-button {
    top: 3vw;
    right: 6.5vw;
    font-size: 1.2rem;
  }

  .nav-header__bottomtext {
    position: relative;
    bottom: 10px;
    font-weight: normal;
    font-size: 1.2rem;
  }

  .nav-drawer__link-main::before {
    display: none;
  }

  .nav-drawer__menu--sub li a::before {
    width: 15px;
    height: 2px;
  }

  .nav-drawer__link:hover::after {
    width: 0;
  }

  .nav-drawer__menu>.nav-drawer__menu-item:last-child .nav-drawer__link {
    border-bottom: solid 1px #ddd;
  }


  .nav-header__telfax {
    display: flex;
    justify-content: flex-start;
    margin: 1em 0 0.5em;
    font-size: 1.5rem;
  }

  .nav-drawer__menu-item>.nav-drawer__link {
    border-bottom: none;
  }

  .nav-header__bottomtext .footer__map {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width:480px) {
  .nav-drawer__logo-img {
    width: 140px;
  }

  .nav-drawer__container {
    line-height: 1.3;
    font-weight: normal;
  }



  .nav-header__bottomtext-text1 {
    margin: 1em 0;
    display: block;
    font-size: 1.4rem;

  }
}

@media (max-width:360px) {
  .nav-drawer__menu-button {
    display: none;
  }
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 40px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--main-black-color);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;

}

.nav-pagetop.active {
  opacity: 1;
  z-index: 20000;
}

.nav-pagetop img {
  position: relative;
  top: 0;
  transition: all 0.2s;
}


.nav-pagetop:hover img {
  top: -10px;
}

.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

#animation_container {
  width: 100%;
  max-width: 100%;
}


.breadcrumbs {
  position: relative;
  margin: 0 auto;
  padding: 1.8rem 70px;
  text-align: right;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list-item {
  font-size: 1rem;
  font-weight: 700;
}

.breadcrumbs__list-item:not(:first-child)::before {
  display: inline-block;
  content: ' ';
  width: 10px;
  height: 1px;
  background: var(--main-black-color);
  margin: 0 10px;
  position: relative;
  top: -4px;
}

.breadcrumbs__link {
  color: var(--main-black-color);
}

.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  .pagevisual__container {
    margin: 0 0 0 6vw;
  }

  .breadcrumbs {
    padding: 0.8rem 6vw;
  }
}

@media screen and (max-width: 800px) {
  .nav-pagetop {
    width: 50px;
    height: 50px;
    right: 5px;
  }

  .breadcrumbs {
    padding: 0.8rem 6vw;
  }

  .breadcrumbs__list-item {
    font-size: 1rem;
  }

  #home #animation_container {
    margin-top: 100px;
    height: 90vw;
    border-radius: 20px;
  }

  #animation_container video {
    height: 90vw;
    margin-top: 100px;

  }
}

@media screen and (max-width: 640px) {
  .nav-pagetop {
    width: 40px;
    height: 40px;
    right: 5px;
  }

  #animation_container {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  #home #animation_container {
    margin-top: 70px;   
  }
  #animation_container video {
    margin-top: 70px;
  }

}

/*cmn */
.keyvisual {
  position: relative;
}

.cmn__title {
  width: auto;
  text-align: center;
  padding: 0;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.cmn__title-text-sub {
  font-size: clamp(2.8rem, 4vw, 5.0rem);
  font-family: 'AvenirNextLTPro-Bold', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0 6vw;
}

.cmn__pagetitle {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.cmn__pagetitle-jp {
  color: var(--main-blue-color);
  font-size: clamp(2rem, -4rem + 6vw, 4.2rem);
  font-weight: normal;
  line-height: 1.3;
  writing-mode: vertical-rl;
}

.cmn__pagetitle-eng {
  font-size: 2rem;
  color: var(--main-lightblue-color);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1em;
}

.bloglist__body .cmn__title-text-sub {
  padding: 0;
}

.cmn__title-text-sub img {
  width: 15vw;
}

.cmn__title-text-sub--s {
  font-size: 3rem;
}

.cmn__title-text-sub::after {
  content: '';
  display: block;
  width: 3px;
  height: 40px;
  background: var(--main-black-color);
  margin: 0 auto 27px;
}

.cmn__title-text-main {
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  margin: 0 auto;
  padding-right: 3px;
}

.liblank {
  height: 0;
  margin-bottom: 0 !important;
}

.cmn__toppic,
.cmn__workspic,
.cmn__blogpic,
.cmn__rankingpic {
  display: block;
  overflow: hidden;
  margin-bottom: 1em;
}

.cmn__blogpic {
  margin-bottom: 10px;
  border-radius: 10px;
  aspect-ratio: 1;
  background-color: var(--main-lightgray-color);
}

.cmn__rankingpic {
  border-radius: 5px;
}

.cmn__rankingpic img {
  width: 100px;
  max-inline-size: unset;
}

.cmn__toppic img,
.cmn__workspic img,
.cmn__blogpic img,
.cmn__rankingpic img {
  height: auto;
  transition: transform .3s ease;
}

.cmn__blogpic img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

a:hover .cmn__toppic img,
.cmn__workspic:hover img,
a:hover .cmn__blogpic img,
a:hover .cmn__rankingpic img {
  transform: scale(1.1);
}

a:hover .cmn__blogpic .cmn__workscategory {
  font-weight: 500;
  font-size: 1.6rem;
}

a:hover .cmn__blogtitle {
  color: var(--main-hover-color);
}

.cmn__worksicon {
  margin-bottom: 15px;
}

.cmn__worksicon li {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 4px 0 0;
}

.cmn__worksicon a {
  padding: 3px 15px;
  border-radius: 20px;
  background: var(--main-black-color);
  color: #fff;
  transition: all .4s;
}

.cmn__worksicon li a:hover {
  background: var(--main-blue-color);
  color: #fff;
}

.cmn__blogtitle {
  font-size: 1.6rem;
  margin: 1em 0;
}

.cmn__name a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.cmn__name img {
  border-radius: 50%;
  margin-right: 0.5em;
  width: 40px;
}

.cmn__workscategory {
  font-weight: normal;
  font-size: 1.4rem;
}

.cmn__workscategory a {
  text-decoration: underline;
}

.cmn__btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: all .4s;
  display: flex;
  width: 100%;
  max-width: 34rem;
  margin: 2vw auto;
  padding: 2.0rem 1.6rem;
  border: none;
  background: #fff;
  border-radius: 40px;
  background: var(--main-lightblue-color);
  color: #fff;
  font-weight: 700;
  font-size: 2.0rem;
}

.cmn__btn--y {
  background: var(--main-yellow-color);
}

.cmn__btn::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 28px;
  background: url(../img/icon-arrow01.svg) no-repeat;
  margin-left: 20px;
  right: 0;
  top: 0;
  position: relative;
  transition: all 0.3s;
}

.cmn__btn--contact {
  font-size: 2.0rem;
  padding: 2.0rem 2rem;
  max-width: 43rem;
  background: #acb2b4;
}

.cmn__btn--contact::after {
  background: url(../img/icon-mail.svg) no-repeat;
}

.cmn__btn:hover,
.cmn__btn:focus {
  background: var(--main-blue-color);
  color: #fff;
}

.cmn__btn:hover::after {
  right: -10px;
}

@media screen and (max-width: 800px) {
  .cmn__btn {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin: 10px auto;
    width: calc(100% - 40px);
    max-width: 80%;
    padding: 2.0rem 1.6rem;
  }

  .cmn__title {
    margin-bottom: 30px;
  }

  .cmn__title-text-sub {
    font-size: clamp(3rem, 4vw, 4.5rem);
    margin-top: unset;
    padding: 0;
  }

  .cmn__title-text-sub::after {
    margin-bottom: 10px;
  }

  .cmn__title--center {
    margin: 30px auto;
  }

  .cmn__worksicon li {
    font-size: 1.0rem;
    width: auto;
    margin-right: 4px;
  }

  .cmn__worksicon li:nth-child(n+2) {
    display: none;
  }

  .cmn__worksicon a {
    padding: 2px 10px;
    margin-bottom: 5px;
    display: inline-block;
  }

  .cmn__workscategory {
    font-size: 1.0rem;
  }

  .cmn__name img {
    width: 30px;
  }

  .cmn__worksicon {
    margin-bottom: 5px;
  }

  .cmn__workspic,
  .cmn__blogpic {
    margin-bottom: 0.1em;
  }

  .cmn__title-text-sub img {
    width: 30vw;
  }
}


@media screen and (max-width: 480px) {
  .cmn__btn {
    width: calc(100% - 12vw);
    padding: 2rem 1.6rem;
  }

  .cmn__btn--contact {
    width: 100%;
    max-width: 100%;
  }

  .cmn__worksicon li {
    font-size: 0.8rem;
    margin-right: 2px;
  }

}


@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}

.button-detail__button--prev:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
  margin-right: 0.8rem;
}

.button-detail__button--next {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}

.button-detail__button--next:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  margin-left: 0.8rem;
}

@media screen and (min-width: 992px) {
  .form__form-group {
    display: flex;
  }
}

.form__form-group-title {
  padding: 1rem;
}

@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}

.form__form-group-content {
  padding: 1rem;
  display: flex;
}

@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}

.form .form__label, .form .form__label--itemname, .form .form__label--required {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.form__label--itemname {
  color: var(--main-black-color);
}

.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #fafafa;
  color: #aaaaaa;
  font-size: 1.4rem;
}

.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form__list-item {
  margin-bottom: 0.6rem;
}

.form .form__input, .form .form__input--text, .form .form__input--text-half, .form .form__input--textarea, .form .form__input--textarea-half, .form .form__input--select, .form .form__input--radio, .form .form__input--check {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}

.form .form__input--radio, .form .form__input--check {
  width: unset;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--select select, .form__input--select .form select {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 1px solid #bbb;
  border-radius: 5px;
  background: #ffffff;
  font-weight: 500;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  /* 旧Edge対応 */
  /* IE対応 */
}

.form .form__input--select select {
  border-color: #999;
}

input:required,
textarea:required {
  background: #def3f7 !important;
}

input:valid,
textarea:valid {
  background: #fff !important;
}

.form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand {
  display: none;
}

.form .form__input--text input::placeholder, .form__input--text .form input::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--select select::placeholder, .form__input--select .form select::placeholder {
  color: #999;
}

.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
  color: #999;
}

.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
  color: #999;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}

.form .form__input--text input:focus, .form__input--text .form input:focus, .form .form__input--text-half input:focus, .form__input--text-half .form input:focus {
  border-color: var(--main-blue-color);
}




.form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}

.form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus, .form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus {
  border-color: var(--main-blue-color);
}

.form__input--text-half {
  max-width: 50%;
}

.form__input--textarea-half {
  max-width: 50%;
}

.form__input--select {
  max-width: 300px;
}

.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}

.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #999 transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}

.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #08aeb0;
  content: "";
  transition: opacity 0.4s;
}

.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}

.form__input--radio .radio-input:checked+.radio-icon {
  border-color: #08aeb0;
}

.form__input--radio .radio-input:checked+.radio-icon:before {
  opacity: 1;
}

.form__input--radio .radio-input:checked~.radio-text {
  color: #08aeb0;
}

.form__input--check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 1em;
}

.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #999;
  border-radius: 5px;
  background: #fff;
}

.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}

.form__input--check .check-text {
  color: var(--main-black-color);
  transition: color 0.4s;
}

.form__input--check .check-input:checked+.check-icon {
  border-color: #08aeb0;
}

.form__input--check .check-input:checked+.check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #08aeb0;
  border-left: 2px solid #08aeb0;
}

.form__input--check .check-input:checked~.check-text {
  color: #08aeb0;
}




/*
 * CONTACT
 * -------------------------------------------------------------------
 */
.contact-form {
  margin: 0 70px;
}

.contact-form__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2em;
}

.contact-table__title h2 {
  font-size: 1.8rem;
  width: 13em;
  display: flex;
  justify-content: space-between;
  padding-right: 1em;
}

.contact-form__nav {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.req {
  font-size: 1.2rem;
  line-height: 2rem;
  background-color: var(--main-red-color);
  color: #fff;
  white-space: nowrap;
  border-radius: 13px;
  padding: 5px 7px;
  line-height: 1;
}

.tel {
  font-size: 180%;
  line-height: 1.0;
}

.contact-form__nav li {
  border: solid 1px #bbbbbb;
  border-radius: 50%;
  padding: 1em;
  margin: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}

.contact-form__nav li.current {
  background: var(--main-blue-color);
  color: #fff;
}

.contact-form__nav li.dash {
  width: 3em;
  height: 1px;
  display: inline-block;
  background: #bbb;
  padding: 0;
  margin: 0;
  border-radius: unset;
  border: none;
}

.contact-table {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  table-layout: fixed;
  border-spacing: 0;
  border: none;
}

.contact-table__row {
  background: #faf9f7;
  border: 0;
  margin: 0 0 20px;
  padding: 20px;
  display: block;
  border-radius: 10px;
  border: solid 1px #d4d4d4;
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s, border-color .2s, opacity .2s;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 4rem 1.6rem;
  border: none;
  background: var(--main-lightblue-color);
  border: solid 3px #fff;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.contact-form__submit::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 28px;
  background: url(../img/icon-arrow01.svg) no-repeat;
  margin-left: 20px;
  right: 0;
  top: 5px;
  position: relative;
  transition: all 0.2s;
}

.contact-form__submit:hover {
  background: var(--main-blue-color);
}

.contact-form__submit:hover::after {
  right: -6px;
}

.contact-form__button {
  padding: 30px;
}

textarea {
  width: 100%;
}

@media (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}

.contact-form__button-submit:hover,
.contact-form__button-submit:focus {
  background: #079698;
}

@media screen and (max-width: 800px) {
  .contact-form {
    margin: 0;
  }

  .contact-table__title h2 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  .contact-table__title h2 {
    font-size: 1.4rem;
  }

  .contact-table__row {
    padding: 3vw;
  }

  .contact-form__nav li {
    font-size: 1.6rem;
  }

  .contact-table__title {
    display: block;
    width: 100%;
  }

  .contact-table__data {
    display: block;
    width: 100%;
  }

  .contact-form__submit {
    font-size: 1.6rem;
    padding: 2rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-form__nav li {
    font-size: 1.2rem;
  }

  .contact-form__button {
    padding: 0 0 15px 0;
  }
}

/*
 * footer
 * -------------------------------------------------------------------
 */
.footer {
  margin: 0 4vw 0;
  background: #e8ecee;
  border-radius: 60px 60px 0 0;
}

.footer__box {
  padding: 6vw 6vw 2vw;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.footer__title {
  font-size: clamp(1.6rem, -1.371rem + 7.43vw, 3.8rem);
  font-weight: normal;
  color: var(--main-blue-color);

}

.footer__engtitle {
  width: 100%;
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
  display: block;
  text-align: center;
}

.footer__h3title {
  font-size: clamp(1.0rem, 1.3vw, 1.8rem);
  font-weight: normal;
}

.footer__tel {
  font-size: clamp(1.8rem, 0.636rem + 5.82vw, 5rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: var(--main-blue-color);
}

.footer__box-right {
  text-align: center;
}

.footer__telsub {
  font-size: 1.2rem;
}

.footer__box2 {
  position: relative;
  border-top: solid 2px #fff;
  padding: 2vw 6vw 6vw;

}

.footer__box2-sub {
  display: flex;
  gap: 50px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__copy {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.0rem;
}

.footer__address {
  font-size: clamp(1rem, 0.782rem + 1.09vw, 1.4rem);
  line-height: 1.5;

}

.footer__link {
  font-size: 1.4rem;
}

.footer__link a {
  color: var(--main-black-color);
}

.footer__map {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.4rem);
  display: flex;
  gap: 0.5em;
  margin-top: 0.5em;
}

@media screen and (max-width: 1380px) {
  .footer__box {
    flex-wrap: wrap;
  }

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

  .footer__box-right,
  .footer__box-left {
    width: calc(50% - 15px);
  }

  .footer__h3title {
    text-align: center;
  }
}

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

  .footer__box-right,
  .footer__box-left {
    width: calc(100%);
  }

  .footer__h3title {
    text-align: center;
  }

  .footer__box2 {
    text-align: center;
    padding-bottom: 10vw;
  }

  .footer__logo {
    margin: 0 auto 5vw;
    max-width: 50%;
  }

  .footer__box2-sub {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .footer__map {
    justify-content: center;
  }
}

@media screen and (max-width: 640px) {
  .footer__box {
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer__box2-sub {
    gap: 10px;
  }
}


/*
 * TOP PAGE
 * -------------------------------------------------------------------
 */
.home__section01 {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin-top: 4vw;
  margin-bottom: 8vw;
}

.home__section01-box {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.home__section01-box2 {
  width: 50%;
  min-width: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 20px;
  text-align: left;
}

.home__section01-box2 .cmn__btn {
  margin: 0;
}

.home__section01-eng {
  display: block;
  font-size: clamp(1rem, -1rem + 2vw, 1.6rem);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--main-lightblue-color);
  text-align: center;
  line-height: 1;
  padding: 1em 0;
}

.home__section01-jp {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: normal;
  line-height: 2.2;
  writing-mode: vertical-rl;
  color: var(--main-blue-color);
  margin: 0.6em auto;
}

.home__section01__pic01 {
  width: calc(120% + 5vw);
  max-width: 360px;
  margin-left: -10vw;
  margin-top: -6vw;
}

.home__section02 {
  margin-bottom: 8vw;
}

.home__services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.home__services li {
  width: 25%;
}

.home__services-box {
  display: block;
  padding: 30px 15px;
  border: solid 3px #eceeee;
  border-radius: 30px;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .home__services-box {
  font-weight: 500;
}

.home__services-box:hover {
  background: #e8edef;
  border-color: #e8edef;
}

.home__services-img {
  width: 40%;
  max-width: 80px;
  margin: 0 auto 0;
  transition: all 1s;
}

a:hover .home__services-img {
  transform: scale(1.1);
  transition: all 0.5s;
}

.home__section02-txt {
  text-align: center;
  margin-bottom: 2em;
}

.home__section03-txt {
  text-align: center;
  margin-bottom: 2em;
}


.home__title-jp {
  font-size: clamp(1.5rem, 3vw, 3.0rem);
  font-weight: normal;
  line-height: 1.8;
  position: absolute;
  bottom: 0;
  right: 8vw;
  text-align: right;
  writing-mode: vertical-rl;
  animation-name: fadeIn;
  animation-delay: 0.5s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-duration: 300ms;
  color: #fff;

}

.home__title-jp span {
  background: var(--main-darkblue-color);
  padding: 14px 8px 0px;
}

.home__subtitle {
  font-size: clamp(0.8rem, 1.2vw, 1.6rem);
  font-weight: normal;
  line-height: 2;
  position: absolute;
  top: calc(10vw + 25em);
  left: 7vw;

  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  -webkit-transform-origin: left bottom;

  color: var(--main-blue-color);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;

}

.home__subtitle span {
  background: var(--main-darkblue-color);
  padding: 8px 5px;
}

@keyframes slideleft {
  0% {
    transform: translateX(-1200px);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideleftsp {
  0% {
    transform: translateX(-800px);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

@keyframes stroke2 {
  0% {
    fill: transparent;
    stroke-dashoffset: 100px;
  }

  55% {

    stroke-dashoffset: 100px;
  }

  60% {
    fill: transparent;
  }

  80% {
    stroke-dashoffset: 0;
    stroke-width: 0.5px;
  }

  90% {
    fill: #fff;
  }

  100% {
    fill: #fff;
    stroke-width: 0;
  }
}

@keyframes stroke4 {
  0% {
    fill: transparent;
    stroke-dashoffset: 350px;
  }

  50% {
    fill: transparent;
    stroke-dashoffset: 350px;
  }

  70% {
    fill: transparent;
    stroke-dashoffset: 0;
  }

  100% {
    fill: #000;
    stroke-width: 0;
  }
}

@keyframes fadeIn1s {
  0% {}

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {}

  100% {
    opacity: 1;
  }
}

.home {
  padding: 0 70px;
  background: #fff;
  position: relative;
}

@keyframes scroll-anim {
  100% {
    background-position: -100% 0;
  }
}

@keyframes stroke {
  0% {
    fill: transparent;
    stroke-dashoffset: 2200px;
  }

  10% {
    fill: transparent;
  }

  80% {
    fill: transparent;
    stroke-dashoffset: 0;
    stroke-width: 1px;
  }

  100% {
    fill: var(--main-yellow-color);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(500px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (max-width: 1600px) {
  .home__subtitle {
    top: calc(10vw + 20em);
  }
}

@media screen and (max-width: 800px) {
  .home__subtitle {
    top: calc(25vw + 25em);
  }
  .home__services {
    flex-wrap: wrap;
  }

  .home__services li {
    width: calc(50% - 10px);
  }


  #home #wrapper:before {
    animation: scroll-anim 7s linear infinite;
  }

  .home {
    padding: 0 6vw;
  }

  .top-bloglist .bloglist__container {
    display: block;
    width: calc(100%);
    margin: 0;
  }

  .home__subtitle-jp {
    width: auto;
    bottom: calc(10vw);
    right: unset;
    left: 4vw;

  }

  .home__section01 {
    flex-direction: column;
    justify-content: center;
  }

  .home__section01-box2 {
    width: 100%;
    min-width: unset;
    justify-content: center;
  }

  .home__section01__pic01 {
    margin: -12vw 0 0 -5vw;
    max-width: unset;
    width: 100%;
  }

  .home__section01-box2 .cmn__btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .home__section01-box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: 100%;
  }

  .home__section01__pic01 {
    margin: -25px auto 10px;
    width: 50%;
  }

  .home__section01-box2 {
    padding: 4vw;
  }

  .home__section02-txt {
    padding: 4vw;
    text-align: left;
  }

  .home__section03-txt {
    padding: 4vw;
    text-align: left;
  }


  .home__subtitle-jp {
    line-height: 2.5;
  }

  .services__table {
    margin: 0 -6vw;
  }

  .cmn-staff {
    padding-top: 70px;
  }

  .cmn-staff-top h3 {
    text-align: right;
  }

  .cmn-staff__fukidashi {
    margin: 0;
    display: inline-block;
  }

  .home__subtitle {
    top: 178px;
    left: calc(6vw + 0.7em);
    display: none;
  }
  .home__title-jp {
    writing-mode: unset;
    text-align: left;
    left:4vw;
    right:unset;
    bottom:6vw;
    line-height: 1.8;
  }
  .home__title-jp span {
    padding: 4px 10px;
  }
}

/*
 * PAGE01
 * -------------------------------------------------------------------
 */

.page01__logo {
  margin: 20px auto 50px;
}

.about__photo {
  border-radius: 30px;
  max-width:300px;
}

.about__profile {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.about__profile-txt {
  width: 50%;
}

.about__profile-txt2 {
  color: var(--main-blue-color);
  font-size: 3rem;
}

.about__profile-txt3 {
  font-size: 1.8rem;
  color: var(--main-lightblue-color);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
  display: block;
  margin-bottom: 1em;
}

.about__profile-txt4 {
  display: block;
  margin-bottom: 2em;
  font-size: clamp(1.4rem, 0.2rem + 2.4vw, 2rem);
  color: var(--main-darkgray-color);
}

.about__table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

.about__table th {
  padding: 10px;
  border: solid 1px var(--main-gray-color);
}

.about__table td {
  padding: 10px;
  border: solid 1px var(--main-gray-color);
  text-align: left;
}

.about__vision {
  text-align: center;
}

.about__vision-lead {
  font-size: clamp(1.8rem, -0.2rem + 4vw, 2.8rem);
  margin-bottom: 0.5em;
  display: block;
  color: var(--main-lightblue-color);
}


.about__value {
  display: flex;
  gap: 4vw;
  margin-bottom: 4vw;
}

.about__value-box {
  width: 50%;
}

.about__value-photo {
  border-radius: 0 30px 30px 0;
  margin-left: -4vw;
  max-width: 50vw;
}

.about__value-title {
  color: var(--main-lightblue-color);
  font-size: clamp(1.8rem, -0.2rem + 3.8vw, 2.8rem);
  font-weight: normal;
  display: block;
  margin-bottom: 1.2em;
}


@media screen and (max-width: 640px) {
  .about__profile {
    flex-direction: column;
  }

  .about__photo {
    margin: 0 auto;
  }

  .about__profile-txt {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .about__profile-txt {
    padding: 4vw;
  }

  .about__value {
    flex-direction: column;
  }

  .about__value-box {
    width: 100%;
    margin-bottom: 2em;
    padding: 4vw;
  }

  .about__value-photo {
    max-width: 100%;
  }

  .about__vision-txt {
    text-align: left;
    padding: 4vw;
  }
  .about__table th,
  .about__table td {
    padding:10px 4px;
  }
  .about__photo {
    max-width: unset;
    width:70%;
  }
}

/*
 * PAGE02
 * -------------------------------------------------------------------
 */
 .services__illust{
  margin:-50px auto;
 }
.services__photo {
  border-radius: 30px;
  max-height: 320px;
}

.services__title {
  color: var(--main-blue-color);
  font-size: clamp(1.6rem, -0.2rem + 3.8vw, 2.8rem);
  font-weight: normal;
  display: block;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.cmn-ol {
  margin: 1em 0 0 1.2em;
}

.cmn-ol li {
  list-style: disc;
  line-height: 1.4;
  margin-bottom: 0.6em;
}

.services__box {
  display: flex;
  gap: 4vw;
  margin-bottom: 6vw;
  margin-top: -90px;
  padding-top: 100px;
  position: relative;
}

.services__right {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .services__box {
    flex-direction: column;
  }

  .services__right {
    width: 100%;
    padding:4vw;
  }

  .services__title {
    flex-direction: column;
    justify-content: center;
    margin: 2em 0 2em;
  }

  .services__photo {
    opacity: 0.2 !important;
    position: absolute;
    top: 140px;
    border-radius: 20px;
    object-fit: cover;
    max-height: 116px;
    width: 100%;
  }
  .services__illust{
    width:70%;
  }
}

/*
 * PAGE04 Privacy Policy
 * -------------------------------------------------------------------
 */
.privacy__box {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy__lead {
  max-width: 1000px;
  margin: 0 auto 4em;
}

.privacy__box dt {
  position: relative;
  font-size: 1.7rem;
  margin: 1em 0 1em 15px;
}

.privacy__box dt::before {
  content: '';
  position: absolute;
  left: -15px;
  display: block;
  width: 3px;
  height: 2em;
  background-color: var(--main-blue-color);
}

.privacy__box dd {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 3em;
}

.privacy__btm {
  max-width: 1000px;
  margin: 0 auto;
  text-align: right;
  font-size: 1.6rem;
}

.privacy__subtitle {
  margin-bottom: 2em;
  font-size: 2rem;
  text-align: center;
}