html {
  font-size: 10px;
}

body {
	background: Slategray;
  color: white;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: max(12px, 1.2rem);
}

/* ローディングが終わるとスクロールを許可 */

body.loaded {
  overflow: auto;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  opacity: 0.6;
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

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

/* Make images easier to work with */

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

/* Inherit fonts for inputs and buttons */

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

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

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

.l-footer {
  background: gray;
  color: #fff;
  text-align: center;
}

.l-footer__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 91.1rem;
  padding: 8.4rem 2rem 2rem;
  position: relative;
}

.l-footer__logo {
  max-width: 20rem;
}

.l-footer__info {
  letter-spacing: 0.2em;
  line-height: 2.5;
  margin-top: 4rem;
}

.l-footer__info span {
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

.l-footer__copyright {
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  letter-spacing: 0.1em;
  margin-top: 5.3rem;
}

/*
 * l-header
 * -------------------------------------------------------------
 */

.l-header {
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.l-header__inner {
  align-items: center;
  display: flex;
  height: 12rem;
  justify-content: space-between;
  padding-left: min(4rem, 3.333vw);
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin: auto;
  padding: 0 2rem;
  position: relative;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
}

/*
 * c-hamburger
 * -------------------------------------------------------------
 */

.c-hamburger {
  cursor: pointer;
  height: 3.2rem;
  left: 4rem;
  position: relative;
  position: fixed;
  top: 4.4rem;
  width: 3.2rem;
  z-index: 100;
}

.c-hamburger::before {
  background: url(./../images/hamburger_blur.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 9.7rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9.7rem;
}

.c-hamburger span {
  background: #fff;
  display: block;
  height: 1px;
  position: absolute;
  transition: all 0.2s;
  width: 100%;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.c-hamburger span:nth-child(3) {
  top: calc(100% - 1px);
}

.c-hamburger span:nth-of-type(1) {
  animation: animation-bar01 0.5s forwards;
}

.c-hamburger span:nth-of-type(2) {
  animation: animation-bar02 0.5s forwards;
}

.c-hamburger span:nth-of-type(3) {
  animation: animation-bar03 0.5s forwards;
}

.c-hamburger::after {
  border: 1px solid rgba(112, 128, 144, 0.3);
  border-radius: 50%;
  content: "";
  display: block;
  height: 3rem;
  left: 50%;
  margin: -1.6rem 0 0 -1.6rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: all 0.1s;
  width: 3rem;
}

.c-hamburger.is-active::after {
  animation: circle 0.5s;
}

.c-hamburger span.is-active:nth-of-type(1) {
  animation: active-animation-bar01 0.5s 0.5s forwards;
}

.c-hamburger span.is-active:nth-of-type(2) {
  animation: active-animation-bar02 0.5s 0.5s forwards;
}

.c-hamburger span.is-active:nth-of-type(3) {
  animation: active-animation-bar03 0.5s 0.5s forwards;
}

/*
 * c-lead
 * -------------------------------------------------------------
 */

.c-lead--white {
  color: #fff;
}

.c-lead__ja {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
}

.c-lead__eng {
  display: block;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
}

/*
 * c-nav
 * -------------------------------------------------------------
 */

.c-nav {
  align-items: center;
  background: rgba(112, 128, 144, 0.9);
  display: flex;
  flex-direction: column;
  height: 100vh;
  opacity: 0;
  padding: 7.8rem 4rem 2.5rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.8s;
  visibility: hidden;
  width: 100%;
}

.c-nav.is-active {
  opacity: 1;
  overflow: auto;
  visibility: visible;
  z-index: 10;
}

.c-nav__logo {
  max-width: 14rem;
}

.c-nav__items {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 9.2rem;
}

.c-nav__link {
  color: #fff;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: max(14px, 1.4rem);
  letter-spacing: 0.2em;
  text-transform: capitalize;
}

.c-nav__info {
  color: #fff;
  letter-spacing: 0.2em;
	margin-top: 5rem;
	align-items: center;
	  line-height: 2.5;
}

.c-nav__copyright {
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: 7rem;
}

/*
 * c-news-btn
 * -------------------------------------------------------------
 */

.c-news-btn {
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 2rem;
  height: 10rem;
  letter-spacing: 0.2em;
  padding-left: 1rem;
  position: relative;
  position: fixed;
  right: 0;
  text-transform: capitalize;
  top: 0;
  transition: all 0.4s;
  width: 10rem;
}

.c-news-btn::before {
  background: rgba(112, 128, 144, 0.9);
  border-radius: 50%;
  content: "";
  display: block;
  height: 19rem;
  position: absolute;
  right: -10rem;
  top: -10rem;
  width: 19rem;
}

.c-news-btn span {
  position: relative;
}

.c-news-btn span::after {
  background: url(./../images/news_blur.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 9.7rem;
  left: 40%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9.7rem;
}

.c-news-btn.is-active {
  opacity: 0;
}

.c-news-btn.is-open {
  opacity: 0;
}

/*
 * c-scroll-nav
 * -------------------------------------------------------------
 */

.c-scroll-nav {
  animation: scrollNavDown 2.5s infinite;
  background: #fff;
  height: 15rem;
  width: 1px;
}

.c-scroll-nav.--blue {
  background: #C0CDDC;
}

/*
 * c-title
 * -------------------------------------------------------------
 */

.c-title {
  letter-spacing: 0.1em;
}

.c-title--center {
  text-align: center;
}

.c-title--objbtm::after {
  background: url(./../images/flower_obj_blue.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 6.8rem;
  margin: 2.2rem auto 0;
  width: min(3.5rem, 100%);
}

.c-title--white {
  color: #fff;
  position: relative;
}

.c-title--white_objright {
  display: inline-block;
  position: relative;
}

.c-title--white_objbtm::after {
  background: url(./../images/flower_obj_white.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 6.8rem;
  margin: 2.2rem auto 0;
  width: min(3.5rem, 100%);
}

.c-title--white_objright::after {
  background: url(./../images/flower_obj_white.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 6.8rem;
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(3.5rem, 100%);
}

.c-title__ja {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.c-title__eng {
  display: block;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  margin-top: 1rem;
  text-transform: capitalize;
}

/*
 * c-toTop
 * -------------------------------------------------------------
 */

.c-toTop {
  color: #fff;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.6rem;
  left: 0;
  letter-spacing: 0.1em;
  padding-left: 1.8rem;
  position: absolute;
  text-transform: capitalize;
  top: 7rem;
}

.c-toTop::before {
  animation: scrollNavUp 2.5s infinite;
  background: #fff;
  content: "";
  display: block;
  height: 15rem;
  left: 0;
  position: absolute;
  top: -13.5rem;
  width: 1px;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

/*
 * access
 * -------------------------------------------------------------
 */

.access {
  background: #gray;
  padding: 12.6rem 0 7.6rem 2.5rem;
}

.access__inner {
  align-items: flex-end;
  display: flex;
  max-width: 102rem;
}

.access__title {
  margin-bottom: auto;
  margin-right: 8rem;
  padding-top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.access__details {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-right: 6rem;
	text-align: center;
	font-size:1.5rem;
}

.access__text--mt {
  margin-top: 2rem;
}

.access__map {
  aspect-ratio: 400/300;
  height: 30rem;
  margin: 3.4rem auto 0;
  max-width: 40rem;
}

.access__map iframe {
  pointer-events: auto !important;
}

.access__map iframe {
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 100%;
  width: 100%;
}

.access__img {
  margin-left: auto;
  max-width: 30rem;
}

.access__scroll-nav {
  left: 8rem;
  position: absolute;
  top: -20rem;
}

/*
 * company
 * -------------------------------------------------------------
 */

.company {
  background: url(./../images/company_bg.webp) no-repeat center;
  background-size: max(100vw, min(143vw, 152rem));
	padding: 11.7rem 0 11.7rem;}  
	
.calendar {
			margin: 0 0 5rem 0;
	font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
ul{width:364px;list-style:none;font-size:15px;color:gray;margin:0px;text-align:center;padding:12px 0;}  
ul li{width:42px;float:left;height:42px;background:#eee;margin:2px;text-align:center;padding:12px 0;}  
ul li.day{font-variant:small-caps;font-size:18px;background:#whitesmoke;height:42px;padding:11px 0;}  
	ul li span{font-size:11px;dispay:block;color:#whitesmoke;padding:20px 0;}  
	ul li.close{font-variant:small-caps;font-size:15px;color:white;background:pink;height:42px;padding:12px 0;}  
  ul li.close_info{font-variant:small-caps;font-size:13px;color:white;background:pink;height:40px;width:50px;padding:13px 0;margin:20px 0 0 270px;}  
  max-width: 60rem;
.day{display:block;}  }

.company__detail {
  align-items: center;
  background: rgba(112, 128, 144, 0.6);
  color: #fff;
  display: flex;
  gap: 6.3rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 90rem;
  padding: 5rem 2.4rem 4.3rem 7rem;
}

.company__title {
  width: -moz-fit-content;
	width: fit-content;
	align-items: center;
	margin: 3rem 3rem 0 0;
}

.company__overview {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.company__item {
  letter-spacing: 0.1em;
	line-height: 2.75;
}



.company__scroll-nav {
  left: 48rem;
  position: absolute;
  top: -19rem;
  transform: translateX(-50%);
}

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

.contact {
  background: #e6f4fd;
}

.contact__inner {
  display: flex;
  max-width: 103rem;
  padding: 5rem 2rem 4.5rem;
}

.contact__title {
  margin: 17.5rem 15rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.contact__form {
  margin-right: 12rem;
  max-width: 47.6rem;
  width: 100%;
}

.contact__lead {
  position: absolute;
  right: -9rem;
  top: 21rem;
  transform: rotate(90deg);
}

.contact__lead-ja {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
}

.contact__lead-eng {
  display: block;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin: 1.4rem 0 0 14.3rem;
}

.contact__scroll-nav {
  position: absolute;
  left: 10rem;
  top: -3rem;
}

/*
 * form
 * -------------------------------------------------------------
 */

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

.form__item:not(:nth-child(1)) {
  margin-top: 3.6rem;
}

.form__item--start {
  align-items: flex-start;
}

.form__label {
  letter-spacing: 0.1em;
  margin-right: 4.3rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  width: max(80px, 8rem);
}

.form__label-eng {
  display: block;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
  text-transform: capitalize;
}

.form__item input,
.form__item textarea {
  background: #fff;
  border: 1px solid #2C75A1;
  flex: 1;
  font-size: 1.4rem;
  padding: 0.85rem 1.5rem;
  width: 100%;
}

.form__item-postcode input {
  max-width: 20rem;
}

.form__item textarea {
  aspect-ratio: 350/200;
}

.form__btn-wrap {
  display: flex;
  gap: 1.3rem;
  justify-content: center;
  margin-left: auto;
  width: min(35.3rem, 100%);
}

.form__btn {
  background: #2c75a1;
  border-radius: 0.7rem;
  color: #fff;
  font-weight: 500;
  height: 3.5rem;
  text-align: center;
  width: min(10rem, 100%);
}

.form__auto-btn {
  margin-left: 1rem;
  min-width: 137px;
  width: min(13.7rem, 100%);
}

.form__radio-items {
  display: flex;
  flex: 1;
  gap: 2rem;
  justify-content: center;
}

.form__radio-item span {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  gap: 0 1rem;
  letter-spacing: 0.1em;
  position: relative;
}

.form__radio-item span::before {
  background: #fff;
  border: 1px solid #2C75A1;
  border-radius: 50%;
  content: "";
  display: block;
  height: 2.5rem;
  width: 2.5rem;
}

.form__radio-item input:checked+span::after {
  background: #2C75A1;
  border-radius: 50%;
  content: "";
  height: 2.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
}

.form__radio-item input {
  display: none;
}

.form__message {
  display: none;
  margin-top: 4rem;
  text-align: center;
}

.form__message.success {
  color: #2C75A1;
}

.form__message.error {
  color: #D9534F;
}


/*
 * mv-slider
 * -------------------------------------------------------------
 */

.mv-slider {
  height: 100%;
}

.mv-slider__item img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.mv-slider__dots {
  align-items: center;
  bottom: 3rem;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  left: 4rem;
  position: absolute;
  z-index: 1;
}

.mv-slider__dots li {
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  height: max(5px, 0.5rem);
  width: max(5px, 0.5rem);
}

.mv-slider__dots li.slick-active {
  height: max(8px, 0.8rem);
  width: max(8px, 0.8rem);
}

.mv-slider__dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  display: none;
  outline: none;
  padding: 0;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/*
 * mv
 * -------------------------------------------------------------
 */

.mv {
  aspect-ratio: 1161/650;
  position: relative;
}

.mv__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 min(10rem, 8.3333vw) 0 min(4rem, 3.333vw);
  position: absolute;
  top: 0;
  transition: opacity 0.8s;
  width: 100%;
}

.mv__inner.is-active {
  opacity: 0;
}

.mv__inner.is-open {
  opacity: 0;
}

.mv__title {
  position: relative;
}

.mv__title::before {
  background: url(./../images/mv_title_blur.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 17rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(31.1rem, 100%);
}

.mv__title-eng {
  margin-top: 2.5rem;
}

.mv__logo {
  width: min(40rem, 100%);
}

.mv__nav {
  position: relative;
}

.mv__nav::before {
  background: url(./../images/mv_nav_blur.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 31rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(16rem, 100%);
}

.mv__nav-items {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.mv__nav-link {
  color: #fff;
  font-family: "century gothic", CenturyGothic,"futura","游ゴシック","YuGothic", "century gothic", "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.2em;
  position: relative;
  text-transform: capitalize;
}

.mv__nav-link::before {
  content: "";
  display: inline-block;
  height: 3.7rem;
  left: -3.5rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
  width: min(2rem, 100%);
}

.mv__nav-link:hover {
  color: #2C75A1;
  opacity: 1;
}

.mv__nav-link:hover::before {
  content: "";
  display: inline-block;
  height: 3.7rem;
  left: -3.5rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(2rem, 100%);
}

.mv__nav-link.current {
  -webkit-text-decoration: underline;
  color: #2C75A1;
  position: relative;
  text-decoration: underline;
}

.mv__nav-link.current::before {
  background: url(./../images/flower_obj_blue.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 3.7rem;
  left: -3.5rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(2rem, 100%);
}

/*
 * news
 * -------------------------------------------------------------
 */

.news {
  display: flex;
  flex-direction: column;
  height: 100vh;
  opacity: 0;
  overflow: hidden;
  padding: 5rem 3rem 5rem 4.2rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.8s;
  visibility: hidden;
  width: min(37.5rem, 100%);
}

.news.is-open {
  opacity: 1;
  overflow: auto;
  transition: all 0.6s;
  visibility: visible;
  z-index: 10;
}

.news::before {
  background: rgba(112, 128, 144, 0.8);
  border-radius: 50%;
  content: "";
  display: block;
  height: 19rem;
  opacity: 0;
  position: absolute;
  right: -10rem;
  top: -10rem;
  transform: scale(1);
  transition: transform 1s ease-out, opacity 0.5s ease-out;
  width: 19rem;
  z-index: -1;
}

.news.is-open::before {
  height: 100vh;
  opacity: 1;
  transform: scale(10, 10);
  width: 100vw;
}

.news:not(.is-open)::before {
  opacity: 0;
  transform: scale(0);
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4.5rem;
}

.news__item {
  color: #fff;
  display: flex;
  gap: 1rem;
  letter-spacing: 0.1em;
}

.news__link {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.news__date {
  align-items: center;
  display: flex;
  font-family: "adobe-garamond-pro", serif;
  line-height: 1.6;
}

.news__title {
	line-height: 1.6;
	 margin-top: 1.5rem;
}

.news__ten {
	line-height: 1.6;
	 margin-top: 1.5rem;
}

.news__content {
  margin-top: 3.5rem;
}

.news__content-text {
  color: #fff;
  line-height: 2.5;
}

/*
 * philosophy
 * -------------------------------------------------------------
 */

.philosophy {
  padding: 15.4rem 0;
}

.philosophy__inner {
  display: flex;
  gap: 8rem;
  max-width: 80rem;
}

.philosophy__header {
  max-width: 35rem;
}

.philosophy__lead {
  margin-top: 12.5rem;
  position: relative;
}

.philosophy__lead::after {
  background: url(./../images/flower_obj_blue.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 6.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(3.5rem, 100%);
}

.philosophy__details {
  max-width: 30rem;
}

.philosophy__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
	margin-top: 3rem;
	font-size: 1.5rem;
}

.philosophy__text {
  letter-spacing: 0.1em;
  line-height: 2.33;
}

.philosophy__obj {
  position: absolute;
  right: -18.3rem;
  top: 0;
  width: min(35rem, 100%);
}

.philosophy__obj img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.philosophy__scroll-nav {
  position: absolute;
  right: 10rem;
  top: -24rem;
}

/*
 * profile
 * -------------------------------------------------------------
 */

.profile {
  padding: 13rem 0 13rem 0;
}

.profile__inner {
  align-items: center;
  display: flex;
	max-width: 110rem;
		 text-align: center;
}

.profile__title {
	margin-right: 0rem;
	width: min(9.9rem, 100%);
	
}

.profile__img {
  margin-right: 0rem;
  width: min(60rem, 100%);
}

.profile__details {
	flex: 1;
  margin: 2.7rem 10rem 10rem 0;
		flex-direction: column;
}

.new_menu {
	display: flex;
	max-width: 110rem;
	flex-direction: column;
	 text-align: center;
}

.profile__position {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.profile__name {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 2.7rem;

}

.profile__name-eng {
  display: block;
  font-family: "adobe-garamond-pro", serif;
  font-size: 1.9rem;
  letter-spacing: 0.2em;
  line-height: 1.58;
  margin-top: 3rem;
	text-transform: capitalize;
		 text-align: center;
}

.profile__text {
  letter-spacing: 0.05em;
  line-height: 1.9;
  margin-top: 3rem;
}

.profile__scroll-nav {
  position: absolute;
  left: 15rem;
  top: -18rem;
}

/*
 * service
 * -------------------------------------------------------------
 */

.service {
  background: url(./../images/about02.JPG) no-repeat center/cover;
  color: #fff;
  padding: 14rem 0 5rem;
  position: relative;
}

.service__inner {
  max-width: 60rem;
}

.service__header {
	align-items: center;
	text-align: center;
  display: flex;
  gap: 25rem;
}

.service__header-logo {
  width: min(30rem, 100%);
}

.service__header-details {
	flex: 1;
	align-items: center;
}

.newmenu__header-details {
	flex: 1;
	align-items: center;
	margin: 0 8rem 0rem 8rem;
}


.service__text {
  letter-spacing: 0.1em;
  line-height: 2.5;
	margin-top: 2rem;
	font-size:2rem;
}

.service__body {
  display: flex;
  gap: 8rem;
  justify-content: space-between;
  margin-top: 10rem;
  position: relative;
}

.service__details {
  max-width: 60rem;
	padding: 40rem 0 0 12rem;
text-align: center;
}


.service__title-block {
	margin-top: 8rem;
		height: 32rem;
}


.service__title-block_02 {
	margin-top: 35rem;
	height: 35rem;
}


.service__title-block_03 {
	margin-top: 0rem;
	height: 32rem;
	max-width: 60rem;
}
	
}
.service__list {
	margin-top: 3rem;
	
}

.pain__item {
	margin-top: 5rem;
	  position: absolute;
  right: 0rem;
	width: min(63rem, 100%);
}

.service__list-item {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
	line-height: 2.35;
	max-width: 30rem;
		margin-top: 3rem;
}


.service__list-item_info {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
	line-height: 2.35;
	max-width: 30rem;
		margin-top: 0rem;
}



.service__img {
  position: absolute;
  right: 0rem;
	width: min(63rem, 100%);
	
}

.service__scroll-nav {
  left: 10rem;
  position: absolute;
  top: -22rem;
}

@media screen and (min-width: 1025px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

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

  html {
    font-size: 0.9765625vw;
  }

}

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

  html {
    font-size: 2.5vw;
  }

  body {
    font-size: 1.2rem;
  }

  .l-footer__inner {
    padding: 16.5rem 2rem 7.8rem;
  }

  .l-footer__logo {
    max-width: 19rem;
  }

  .l-footer__info {
    line-height: 2.9;
    margin-top: 3rem;
  }

  .l-footer__copyright {
    margin-top: 4rem;
  }

  .l-header__inner {
    height: 8rem;
    padding-left: 1.8rem;
  }

  .l-inner {
    padding: 0 4.7rem;
  }

  .c-hamburger {
    height: 2.5rem;
    left: 1.8rem;
    top: 2.6rem;
    width: 2.5rem;
  }

  .c-hamburger::before {
    height: 7.7rem;
    width: 7.7rem;
  }

  .c-hamburger::after {
    height: 2.2rem;
    margin: -1rem 0 0 -1rem;
    width: 2.2rem;
  }

  .c-lead__ja {
    font-size: 2rem;
  }

  .c-nav__logo {
    max-width: 12rem;
  }

  .c-nav__link {
    font-size: 1.4rem;
  }

  .c-news-btn {
    font-size: 1.6rem;
    height: 8rem;
    padding-left: 1.2rem;
    width: 8rem;
  }

  .c-news-btn::before {
    height: 15.2rem;
    right: -8rem;
    top: -8rem;
    width: 15.2rem;
  }

  .c-news-btn span::after {
    height: 7.7rem;
    width: 7.7rem;
  }

  .c-scroll-nav {
    animation: scrollNavDown-sp 2.5s infinite;
    height: 15rem;
  }

  .c-title {
    position: relative;
  }

  .c-title--objbtm::after {
    height: 5.8rem;
    margin: 0;
    position: absolute;
    right: -3rem;
    top: -22%;
    width: min(3rem, 100%);
  }

  .c-title--white_objbtm::after {
    height: 5.8rem;
    margin-top: 1.3rem;
    width: min(3rem, 100%);
  }

  .c-title--white_objright::after {
    height: 5.8rem;
    right: -3rem;
    top: 40%;
    width: min(3rem, 100%);
  }

  .c-title__ja {
    font-size: 1rem;
  }

  .c-title__eng {
    font-size: 2.4rem;
  }

  .c-toTop {
    padding-left: 4rem;
    top: 10rem;
  }

  .c-toTop::before {
    animation: scrollNavUp-sp 2.5s infinite;
    height: 25rem;
    left: 2.6rem;
    top: -12.5rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .access {
    padding: 8rem 0 7.3rem;
  }

  .access__inner {
    align-items: center;
    flex-direction: column;
  }

  .access__title {
    margin: 0 auto;
    padding-top: 0;
  }

  .access__title::after {
    margin: 1.5rem auto 0;
    position: static;
  }

  .access__details {
    line-height: 2.16;
    margin: 4rem auto 0;
    text-align: left;
  }

  .access__text--mt {
		margin-top: 3rem;
  }

  .access__map {
    aspect-ratio: 375/275;
    height: 100%;
    margin: 6.5rem calc(50% - 50vw) 0;
    max-width: 100vw;
  }

  .access__img {
    margin: 7rem auto 0;
    max-width: 100%;
  }

  .access__scroll-nav {
    left: auto;
    right: 9rem;
    top: -16rem;
  }

  .company {
    background-position: top;
    background-size: 152rem;
    padding: 9.5rem 0;
  }

  .company__inner {
    padding: 0 2rem;
  }

  .company__detail {
    flex-direction: column;
    gap: 4rem;
    max-width: 60rem;
		    align-items: center;
  }

  .company__item {
    font-size: 1rem;
    line-height: 2.6;
  }

  .company__scroll-nav {
    left: 20rem;
    top: -16rem;
    transform: none;
    transform: initial;
  }

  .contact__inner {
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8.5rem 0;
    justify-content: space-between;
    padding: 2.3rem 1.3rem 8.8rem;
  }

  .contact__title {
    margin: 17rem 0 0 4.4rem;
    order: 1;
  }

  .contact__title::after {
    margin: 1.5rem auto 0;
    position: static;
  }

  .contact__form {
    margin: 0;
    max-width: 100%;
    order: 3;
  }

  .contact__lead {
    Top: 15rem;
    order: 2;
    right: -5rem;
  }

  .contact__lead-ja {
    font-size: 2rem;
  }

  .contact__lead-eng {
    margin: 1.4rem 0 0 8rem;
  }

  .contact__scroll-nav {
    right: 4rem;
    top: 0rem;
  }

  .form__item {
    align-items: center;
    flex-direction: column;
    gap: 1.3rem;
  }

  .form__item:not(:nth-child(1)) {
    margin-top: 1.3rem;
  }

  .form__item--start {
    align-items: center;
  }

  .form__label {
    margin: 0 auto;
    width: 100%;
  }

  .form__item input,
  .form__item textarea {
    padding: 0.85rem 1rem;
  }

  .form__item-postcode {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form__item-postcode input {
    flex: 1;
  }

  .form__btn-wrap {
    flex-direction: row;
    margin-top: 3.6rem;
  }

  .form__btn {
    margin-top: 2.3rem;
  }

  .form__auto-btn {
    margin: 0;
  }

  .loading__logo {
    max-width: 18rem;
  }

  .loading__second-logo {
    width: min(18rem, 100%);
  }

  .mv-slider__item {
    aspect-ratio: 375/667;
  }

  .mv-slider__dots {
    left: 2.4rem;
  }

  .mv-slider__dots li {
    height: max(4px, 0.4rem);
    width: max(4px, 0.4rem);
  }

  .mv-slider__dots li.slick-active {
    height: max(7px, 0.7rem);
    width: max(7px, 0.7rem);
  }

  .mv {
    aspect-ratio: 375/667;
  }

  .mv__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 2.4rem 8rem;
  }

  .mv__title {
    margin-top: auto;
  }

  .mv__title::before {
    display: none;
  }

  .mv__logo {
    left: 50%;
    position: absolute;
    top: 25rem;
    transform: translateX(-50%);
    width: min(25rem, 100%);
  }

  .mv__nav {
    display: none;
  }

  .news {
    padding: 13.7rem 3.5rem 8rem;
  }

  .news::before {
    transition: transform 0.6s ease-out, opacity 0.3s ease-out;
  }

  .philosophy {
    padding: 9rem 0 7rem;
  }

  .philosophy__inner {
    flex-direction: column;
    gap: 6rem;
  }

  .philosophy__header {
    max-width: 100%;
  }

  .philosophy__lead {
    margin-top: 7rem;
  }

  .philosophy__lead::after {
    height: 5.8rem;
    right: 1rem;
    width: min(3rem, 100%);
  }

  .philosophy__details {
    max-width: 100%;
  }

  .philosophy__obj {
    aspect-ratio: 280/300;
    margin-top: 7rem;
    position: static;
    width: 100%;
  }

  .philosophy__scroll-nav {
    right: 2rem;
    top: -16.5rem;
  }

  .profile {
    padding: 6rem 0 9.5rem;
  }

  .profile__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 4.3rem;
  }

  .profile__title {
    margin-right: 0;
    width: -moz-fit-content;
    width: fit-content;
  }

  .profile__img {
    margin: 5rem 0 0;
    width: 100%;
  }

  .profile__details {
    margin-top: 5rem;
    width: 100%;
  }

  .profile__scroll-nav {
    right: 50%;
    top: -18rem;
    transform: translateX(-50%);
  }

  .service {
    background: url(./../images/sp/service_bg.jpg) no-repeat top/cover;
    padding: 7.5rem 0 10rem;
  }

  .service__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4.3rem;
  }

  .service__header-logo {
    width: min(18rem, 100%);
  }

  .service__header-details {
    width: 100%;
  }

  .service__body {
    flex-direction: column-reverse;
    gap: 7.2rem;
    margin-top: 8.2rem;
  }

  .service__details {
    max-width: 100%;
    padding: 0;
  }

  .service__title-block {
    margin-top: 0rem;
	}
	
	  .service__title-block_02 {
    margin-top: 11rem;
  }

  .service__list {
    margin-right: calc(50% - 50vw);
    margin-top: 1rem;
  }

  .service__list-item {
    font-size: 1.5rem;
    line-height: 2.16;
  }

  .service__img {
    margin: 0 calc(50% - 50vw);
    position: static;
    width: 100vw;
  }

  .service__scroll-nav {
    left: auto;
    right: 5rem;
    top: -16rem;
  }

}

@keyframes animation-bar01 {

  0% {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }

}

@keyframes animation-bar02 {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}

@keyframes animation-bar03 {

  0% {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }

}

@keyframes circle {

  0% {
    opacity: 0;
    transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(3.5);
  }

}

@keyframes active-animation-bar01 {

  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

}

@keyframes active-animation-bar02 {

  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}

@keyframes active-animation-bar03 {

  0% {
    transform: translateY(0) rotate(0);
  }

  100% {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

}

@keyframes scrollNavDown {

  0% {
    height: 0;
    top: 0;
  }

  100% {
    height: 15rem;
  }

}

@keyframes scrollNavDown-sp {

  0% {
    height: 0;
    top: 0;
  }

  100% {
    height: 15rem;
  }

}

@keyframes scrollNavUp {

  0% {
    bottom: 0;
    height: 15rem;
  }

  100% {
    height: 0;
  }

}

@keyframes scrollNavUp-sp {

  0% {
    bottom: 0;
    height: 15rem;
  }

  100% {
    height: 0;
  }

}

@keyframes fadeFill {

  0% {
    fill-opacity: 0;
  }

  100% {
    fill-opacity: 1;
  }

}


/*# sourceMappingURL=style.css.map */