@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
- base
- fadein
- concept_sec
- intro_sec
- compact_sec
- about_sec
- view_sec
-------------------------*/
/*=======================================
　base
=======================================*/
html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.0714285714;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
    line-height: 2;
  }
}

.inner.w1110 {
  max-width: 1110px;
}
.inner.w1350 {
  max-width: 1350px;
}

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

figure {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
figure figcaption {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  right: 10px;
  bottom: 10px;
  text-shadow: 0 0 6px rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  figure figcaption {
    font-size: 10px;
  }
}

.nowrap {
  white-space: nowrap;
}

.design_sttl {
  color: #566B9A;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5666666667;
}
@media screen and (max-width: 768px) {
  .design_sttl {
    font-size: 23px;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }
}

/*=======================================
　fadein
=======================================*/
/* ぼやっと出てくる */
.filter_blur {
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  will-change: filter;
}
.filter_blur.is-show {
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*下から*/
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*その場で出現*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn.is-show {
  opacity: 1;
}

/*=======================================
	concept_sec
=======================================*/
.concept_sec {
  width: 100vw;
  padding-top: 138px;
  padding-bottom: 172px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .concept_sec {
    padding-top: 70px;
    padding-bottom: 85px;
  }
}
.concept_sec::before {
  content: "";
  inset: 0;
  position: absolute;
  background: center/cover url(../img/design/design_bg.png) no-repeat;
  scale: -1 1;
  z-index: -1;
}
.concept_sec .page_ttl {
  width: 276px;
  margin-inline: auto;
  margin-bottom: 138px;
}
@media screen and (max-width: 768px) {
  .concept_sec .page_ttl {
    width: 184px;
    margin-bottom: 70px;
  }
}
.concept_sec .sttl {
  width: 204px;
  margin-inline: auto;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .concept_sec .sttl {
    width: 136px;
    margin-bottom: 18px;
  }
}
.concept_sec .concept_cc {
  color: #07183B;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.525;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .concept_sec .concept_cc {
    font-size: 27px;
    margin-bottom: 20px;
    translate: 0.25em 0;
  }
}
.concept_sec .concept_txt {
  font-size: 16px;
  line-height: 2.375;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .concept_sec .concept_txt {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
    translate: 0.25em 0;
  }
}
.concept_sec .concept_img_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .concept_sec .concept_img_list figcaption {
    font-size: max(1.171875vw, 9px);
    right: 1.171875vw;
    bottom: 1.171875vw;
  }
}
@media screen and (max-width: 768px) {
  .concept_sec .concept_img_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*=======================================
	intro_sec
=======================================*/
.intro_sec {
  background: top/100% auto url(../img/design/design_bg.png) no-repeat;
  margin-bottom: 147px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .intro_sec {
    margin-bottom: 72px;
  }
}
.intro_sec::before {
  content: "";
  display: block;
  width: 48.4375vw;
  aspect-ratio: 930/398;
  background: center/cover url(../img/design/intro_leaf.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.intro_sec .intro_content {
  width: 100%;
  padding-left: max((100vw - 1110px) / 2, 5vw);
  display: grid;
  grid-template-columns: 585.61px 1fr;
  position: relative;
  margin-bottom: min(22.8958333333vw, 439.6px);
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content {
    width: 89.3333333333%;
    grid-template-columns: 1fr;
    padding-left: 0;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_content {
    margin-bottom: 90px;
  }
}
.intro_sec .intro_content::after {
  content: "";
  display: block;
  width: 4.0645833333vw;
  max-width: 78px;
  aspect-ratio: 78.04/1057.36;
  background: center/cover url(../img/design/intro_txt.svg) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content::after {
    width: 10.3146666667vw;
    top: auto;
    left: -5vw;
    bottom: 0;
    rotate: 180deg;
  }
}
.intro_sec .intro_content .intro_left {
  padding-top: 19.6223958333vw;
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content .intro_left {
    width: 89.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_content .intro_left {
    padding-top: 90px;
  }
}
.intro_sec .intro_content .intro_left .design_sttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content .intro_left .design_sttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_content .intro_left .design_sttl {
    margin-bottom: 25px;
  }
}
.intro_sec .intro_content .intro_left {
  /*.intro_left_txt_box{
  	display: grid;
  	grid-template-columns: 1fr 47.7815699659%;
  	gap: 5.1194539249%;
  	@include mq-down(xl){
  		grid-template-columns: 1fr;
  		gap: 30px;
  		margin-bottom: 50px;
  	}
  	@include mq-down(md){
  		gap: 20px;
  		margin-bottom: 25px;
  	}
  }*/
}
.intro_sec .intro_content .intro_left .intro_left_txt_box {
  width: 495px;
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content .intro_left .intro_left_txt_box {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_content .intro_left .intro_left_txt_box {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content .intro_left .intro_left_img {
    width: 82.0895522388%;
    margin-inline: auto;
  }
}
.intro_sec .intro_content .intro_right {
  width: 66.1979166667vw;
  max-width: 1271px;
  position: absolute;
  left: calc(663px + (100vw - 1920px) / 2);
  top: 58.4px;
  z-index: -1;
}
@media screen and (max-width: 1920px) {
  .intro_sec .intro_content .intro_right {
    left: auto;
    right: -14px;
  }
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content .intro_right {
    width: 100vw;
    translate: -5.3333333333vw 0;
    position: static;
  }
}
.intro_sec .intro_content .intro_right figcaption {
  right: 87px;
  bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .intro_sec .intro_content .intro_right figcaption {
    color: #222222;
    text-shadow: none;
    right: 5vw;
    bottom: -22px;
  }
}
.intro_sec .intro_entrance .entrance_ttl {
  width: 57.6576576577%;
  translate: -0.25px 2px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_entrance .entrance_ttl {
    width: 66.67%;
    translate: 0 1px;
  }
}
.intro_sec .intro_entrance .entrance_img {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_entrance .entrance_img {
    margin-bottom: 30px;
  }
}
.intro_sec .intro_entrance .design_sttl {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_entrance .design_sttl {
    margin-bottom: 16px;
  }
}
.intro_sec .intro_entrance .entrance_content {
  display: grid;
  grid-template-columns: 1fr 52.7027027027%;
  gap: 2.7027027027%;
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_entrance .entrance_content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.intro_sec .intro_entrance .entrance_content .entrance_right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_entrance .entrance_content .entrance_right {
    gap: 5px;
  }
}
.intro_sec .intro_entrance .entrance_content .entrance_right .entrance_item img {
  margin-bottom: 9px;
}
@media screen and (max-width: 768px) {
  .intro_sec .intro_entrance .entrance_content .entrance_right .entrance_item img {
    margin-bottom: 5px;
  }
}
.intro_sec .intro_entrance .entrance_content .entrance_right .entrance_item figcaption {
  color: #222;
  font-weight: 700;
  text-align: center;
  position: static;
  text-shadow: none;
}

/*=======================================
	compact_sec
=======================================*/
.compact_sec {
  padding-top: 151px;
  padding-bottom: 100px;
  position: relative;
  isolation: isolate;
  background: center/cover url(../img/design/compact_bg.jpg) no-repeat;
}
@media screen and (max-width: 768px) {
  .compact_sec {
    padding-top: 75px;
    padding-bottom: 50px;
  }
}
.compact_sec .compact_ttl {
  font-family: "Shippori Mincho", serif;
  color: #07183B;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.525;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_ttl {
    font-size: 27px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 45px;
    translate: 0.25em 0;
  }
}
.compact_sec .compact_main_img {
  width: 90%;
  max-width: 582px;
  margin-inline: auto;
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_main_img {
    width: 100%;
    margin-bottom: 32px;
  }
}
.compact_sec .compact_list_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.4054054054%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
  }
}
.compact_sec .compact_list_wrapper .compact_list.list_left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  -webkit-column-gap: 6.6666666667%;
     -moz-column-gap: 6.6666666667%;
          column-gap: 6.6666666667%;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item:has(.compact_item_img) .compact_item_txt, .compact_sec .compact_list_wrapper .compact_list .compact_item:has(.note) .compact_item_txt {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item:has(.compact_item_img) .compact_item_txt, .compact_sec .compact_list_wrapper .compact_list .compact_item:has(.note) .compact_item_txt {
    margin-bottom: 8px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_b, .compact_sec .compact_list_wrapper .compact_list .compact_item.item_c, .compact_sec .compact_list_wrapper .compact_list .compact_item.item_d, .compact_sec .compact_list_wrapper .compact_list .compact_item.item_e {
  grid-template-rows: subgrid;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_a, .compact_sec .compact_list_wrapper .compact_list .compact_item.item_f {
  grid-column: 1/-1;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_d figure figcaption {
  text-shadow: 0 0 6px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0), 0 0 6px rgb(0, 0, 0);
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 7.619047619%;
     -moz-column-gap: 7.619047619%;
          column-gap: 7.619047619%;
  color: #fff;
  background: #002752;
  padding: 25px 3.8095238095%;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    padding: 12px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box hgroup {
  margin-bottom: 20px;
  display: grid;
  gap: 8px;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box hgroup p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714285714;
  letter-spacing: 0;
  text-align: center;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box hgroup .item_ttl {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item.item_f .compact_item_box hgroup .item_ttl {
    line-height: 1.5;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_g {
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item.item_g.list_left_g {
    display: none;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_g.list_right_g {
  display: none;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item.item_g.list_right_g {
    display: grid;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_h .compact_item_img {
  width: 245px;
  margin-inline: auto;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_h .compact_item_head .item_ttl .ttl_inner, .compact_sec .compact_list_wrapper .compact_list .compact_item.item_i .compact_item_head .item_ttl .ttl_inner {
  padding-block: 10px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item.item_h .compact_item_head .item_ttl .ttl_inner, .compact_sec .compact_list_wrapper .compact_list .compact_item.item_i .compact_item_head .item_ttl .ttl_inner {
    padding-block: 5px !important;
    line-height: 1.5;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item.item_j .compact_item_2c {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 6.6666666667%;
     -moz-column-gap: 6.6666666667%;
          column-gap: 6.6666666667%;
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head {
  color: #fff;
  background: #002752;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head {
    margin-bottom: 8px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .num {
  width: 40px;
  aspect-ratio: 1/1;
  background: #7A96C8;
  display: grid;
  place-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .num {
    width: 30px;
    font-size: 18px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .item_ttl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #002752;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .item_ttl {
    padding-left: 8px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .item_ttl .ttl_inner {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .item_ttl .ttl_inner {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
    padding-block: 0px !important;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .item_ttl .ttl_inner .mini {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5714285714;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_head .item_ttl .ttl_inner .mini {
    font-size: 13px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_txt {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_txt {
    line-height: 1.75;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_img {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_img {
    margin-bottom: 8px;
  }
}
.compact_sec .compact_list_wrapper .compact_list .compact_item .note,
.compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_box_note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_list_wrapper .compact_list .compact_item .note,
  .compact_sec .compact_list_wrapper .compact_list .compact_item .compact_item_box_note {
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
.compact_sec .compact_point .point_ttl {
  font-family: "Shippori Mincho", serif;
  color: #566B9A;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4137931034;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 55px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_ttl {
    font-size: 23px;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 27px;
  }
}
.compact_sec .compact_point .point_ttl::before, .compact_sec .compact_point .point_ttl::after {
  content: "";
  display: block;
  width: 106px;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(rgb(103, 111, 180)), color-stop(50%, rgb(103, 111, 180)), to(rgba(103, 111, 180, 0)));
  background: linear-gradient(to left, rgb(103, 111, 180) 0%, rgb(103, 111, 180) 50%, rgba(103, 111, 180, 0) 100%);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_ttl::before, .compact_sec .compact_point .point_ttl::after {
    width: 53px;
  }
}
.compact_sec .compact_point .point_ttl::before {
  left: -126px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_ttl::before {
    left: -14.1333333333vw;
  }
}
.compact_sec .compact_point .point_ttl::after {
  scale: -1 1;
  right: -126px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_ttl::after {
    right: -14.1333333333vw;
  }
}
.compact_sec .compact_point .point_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list {
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }
}
.compact_sec .compact_point .point_list .point_item {
  color: #fff;
  padding: 44px 12.1621621622% 32px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list .point_item {
    padding: 22px;
  }
}
.compact_sec .compact_point .point_list .point_item.point_item01 {
  background: center/cover url(../img/design/compact_point01.jpg) no-repeat;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list .point_item.point_item01 {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.compact_sec .compact_point .point_list .point_item.point_item01 .num img {
  width: 102px;
}
.compact_sec .compact_point .point_list .point_item.point_item02 {
  background: center/cover url(../img/design/compact_point02.jpg) no-repeat;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list .point_item.point_item02 {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.compact_sec .compact_point .point_list .point_item.point_item02 .num img {
  width: 107px;
}
.compact_sec .compact_point .point_list .point_item.point_item03 {
  background: center/cover url(../img/design/compact_point03.jpg) no-repeat;
}
.compact_sec .compact_point .point_list .point_item.point_item03 .num img {
  width: 108px;
}
.compact_sec .compact_point .point_list .point_item .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list .point_item .num {
    margin-bottom: 15px;
  }
}
.compact_sec .compact_point .point_list .point_item .num::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(75%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list .point_item .num img {
    scale: 0.9;
  }
}
.compact_sec .compact_point .point_list .point_item .point_sttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5217391304;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .point_list .point_item .point_sttl {
    margin-bottom: 20px;
  }
}
.compact_sec .compact_point .point_list .point_item .point_sttl sup {
  font-size: 55%;
}
.compact_sec .compact_point .point_list .point_item .point_txt {
  font-weight: 600;
}
.compact_sec .compact_point .note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .compact_sec .compact_point .note {
    text-align: left;
  }
}

/*=======================================
	about_sec
=======================================*/
.about_sec {
  padding-top: 147px;
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .about_sec {
    padding-top: 72px;
    margin-bottom: 90px;
  }
}
.about_sec .about_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 4.6846846847%;
     -moz-column-gap: 4.6846846847%;
          column-gap: 4.6846846847%;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .about_sec .about_content_wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
.about_sec .about_content_wrapper .about_content {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
@media screen and (max-width: 768px) {
  .about_sec .about_content_wrapper .about_content.about_content01 {
    margin-bottom: 40px;
  }
}
.about_sec .about_content_wrapper .about_content .about_sttl {
  font-family: "Shippori Mincho", serif;
  color: #566B9A;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4137931034;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .about_sec .about_content_wrapper .about_content .about_sttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.about_sec .about_content_wrapper .about_content .about_txt {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .about_sec .about_content_wrapper .about_content .about_txt {
    margin-bottom: 19px;
  }
}
.about_sec .about_content_wrapper .about_content .about_img.content01_img {
  width: 66.2857142857%;
  margin-inline: auto;
}
.about_sec .about_outpole {
  background: #F7F5F4;
  padding: 110px 4.0540540541%;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole {
    padding: 40px 4%;
  }
}
.about_sec .about_outpole .about_sttl {
  font-family: "Shippori Mincho", serif;
  color: #566B9A;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4137931034;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .about_sttl {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
.about_sec .about_outpole .about_sttl::before, .about_sec .about_outpole .about_sttl::after {
  content: "";
  display: block;
  width: 5.5208333333vw;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(rgb(103, 111, 180)), color-stop(50%, rgb(103, 111, 180)), to(rgba(103, 111, 180, 0)));
  background: linear-gradient(to left, rgb(103, 111, 180) 0%, rgb(103, 111, 180) 50%, rgba(103, 111, 180, 0) 100%);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .about_sttl::before, .about_sec .about_outpole .about_sttl::after {
    width: 8vw;
    max-width: 53px;
  }
}
.about_sec .about_outpole .about_sttl::before {
  left: -7.2916666667vw;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .about_sttl::before {
    left: -10vw;
  }
}
.about_sec .about_outpole .about_sttl::after {
  right: -7.2916666667vw;
  scale: -1 1;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .about_sttl::after {
    right: -10vw;
  }
}
.about_sec .about_outpole .about_sttl .br1024 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .about_sec .about_outpole .about_sttl .br1024 {
    display: block;
  }
}
.about_sec .about_outpole .outpole_content {
  display: grid;
  grid-template-columns: 46.675% 1fr;
  -webkit-column-gap: 6.0434782609%;
     -moz-column-gap: 6.0434782609%;
          column-gap: 6.0434782609%;
  border: 1px solid #45609A;
  background: #fff;
  padding: 47px 4.9019607843%;
}
.about_sec .about_outpole .outpole_content:nth-of-type(2) {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .outpole_content:nth-of-type(2) {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .outpole_content {
    grid-template-columns: 1fr;
    padding: 23px;
    row-gap: 15px;
  }
}
.about_sec .about_outpole .outpole_content:first-of-type {
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .outpole_content:first-of-type {
    margin-bottom: 15px;
  }
}
.about_sec .about_outpole .outpole_content .outpole_content_ttl {
  font-family: "Shippori Mincho", serif;
  color: #45609A;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8636363636;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .about_sec .about_outpole .outpole_content .outpole_content_ttl {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
}
.about_sec .about_outpole .outpole_content .outpole_img {
  padding-top: 5px;
}
.about_sec .note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .about_sec .note {
    text-align: left;
  }
}

/*=======================================
	view_sec
=======================================*/
.view_sec .view_ttl {
  width: 198.45px;
  margin-inline: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_ttl {
    width: 132px;
    margin-bottom: 30px;
  }
}
.view_sec .view_sttl {
  color: #07183B;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4411764706;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_sttl {
    font-size: 23px;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
  }
}
.view_sec .view_img {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_img {
    margin-bottom: 19px;
  }
}
.view_sec .view_txt {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_txt {
    margin-bottom: 50px;
  }
}
.view_sec .view_fire {
  display: grid;
  grid-template-columns: 42.0990196078% 1fr;
  padding: 110px 12.2222222222% 120px;
  -webkit-column-gap: 4.9607843137%;
     -moz-column-gap: 4.9607843137%;
          column-gap: 4.9607843137%;
  background: center/cover url(../img/design/view_bg.jpg) no-repeat;
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .view_sec .view_fire {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .view_sec .view_fire {
    padding: 22px;
    margin-bottom: 75px;
  }
}
.view_sec .view_fire .fire_ttl {
  color: #566B9A;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4137931034;
  -moz-text-align-last: left;
       text-align-last: left;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_fire .fire_ttl {
    font-size: 19px;
    margin-bottom: 22px;
  }
}
.view_sec .view_fire .view_txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_fire .view_txt {
    margin-bottom: 15px;
  }
}
.view_sec .view_fire .note {
  font-size: 10px;
  line-height: 1.7;
}
.view_sec .view_fire .view_img {
  margin-bottom: 0;
}
.view_sec .view_panorama .panorama {
  width: 100%;
  max-width: none;
  height: 394px;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  position: relative;
}
@media screen and (max-width: 768px) {
  .view_sec .view_panorama .panorama {
    height: 275px;
  }
}
.view_sec .view_panorama .panorama.north {
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_panorama .panorama.north {
    margin-bottom: 13px;
  }
}
.view_sec .view_panorama .panorama img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: none;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.view_sec .view_panorama .panorama .prev_btn,
.view_sec .view_panorama .panorama .next_btn {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.view_sec .view_panorama .panorama .prev_btn .btn_img,
.view_sec .view_panorama .panorama .next_btn .btn_img {
  width: 45px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_panorama .panorama .prev_btn .btn_img,
  .view_sec .view_panorama .panorama .next_btn .btn_img {
    width: 30px;
    height: 60px;
  }
}
.view_sec .view_panorama .panorama .prev_btn {
  padding-left: 25px;
  left: -5px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_panorama .panorama .prev_btn {
    padding-left: 15px;
  }
}
.view_sec .view_panorama .panorama .prev_btn .btn_img {
  background: center/cover url(../img/design/view_arrow_prev.png) no-repeat;
}
.view_sec .view_panorama .panorama .next_btn {
  padding-right: 25px;
  right: -5px;
}
@media screen and (max-width: 768px) {
  .view_sec .view_panorama .panorama .next_btn {
    padding-right: 15px;
  }
}
.view_sec .view_panorama .panorama .next_btn .btn_img {
  background: center/cover url(../img/design/view_arrow_next.png) no-repeat;
}
.view_sec .view_panorama .panorama .finger {
  display: none;
}
@media screen and (max-width: 768px) {
  .view_sec .view_panorama .panorama .finger {
    display: block;
    width: 184px;
    height: 93px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
  }
}/*# sourceMappingURL=design.css.map */