@charset "UTF-8";
/* CSS Document */
/* SCSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
ul {
  padding-left: 0;
  list-style-type: none; }

a {
  color: #333;
  transition: all linear 0.3s; }
  a:hover {
    color: #484848; }

p {
  line-height: 2;
  font-size: clamp(15px, 1.1vw, 17px); }
  p a:hover {
    color: #484848;
    text-decoration: underline; }

.fs-smaller {
  font-size: clamp(14px, 0.9vw, 15px); }

.fs-larger {
  font-size: clamp(15px, 1vw, 22px); }

img {
  max-width: 100%;
  height: auto; }

.w100 img {
  width: 100%; }

.fit {
  width: fit-content; }

.box1920 {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 1920px) {
    .box1920 {
      padding-left: 15px;
      padding-right: 15px; } }

.box1366 {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 1366px) {
    .box1366 {
      padding-left: 15px;
      padding-right: 15px; } }

.box1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 1201px) {
    .box1200 {
      padding-left: 15px;
      padding-right: 15px; } }

.box1080 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 1080px) {
    .box1080 {
      padding-left: 15px;
      padding-right: 15px; } }

@media (max-width: 820px) {
  .only-pc._not-tb {
    display: none !important; } }
@media (max-width: 480px) {
  .only-pc._not-sp {
    display: none !important; } }

.only-tb {
  display: none; }
  @media (max-width: 820px) {
    .only-tb {
      display: block; } }

.only-sp {
  display: none; }
  @media (max-width: 480px) {
    .only-sp {
      display: block; } }

@media (max-width: 480px) {
  .not-sp {
    display: none; } }

.target-area {
  display: block;
  padding-top: 100px;
  margin-top: -100px; }

.effect-fade {
  opacity: 0;
  transform: translate(0, 100px);
  /* フェードインで動く高さを指定 */
  transition: all 2000ms;
  /* フェードインにかかる時間を指定 */ }

.effect-scroll {
  opacity: 1;
  transform: translate(0, 0); }

.mb {
  margin-bottom: clamp(80px, 10%, 200px); }

.mb-s {
  margin-bottom: clamp(30px, 5%, 100px); }

.bg_gray {
  background: #eeeeef; }

.title1 {
  display: block;
  color: #333;
  text-align: center;
  font-size: clamp(19px, 4vw, 35px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: clamp(30px, 4%, 60px); }
  .title1._smaller {
    font-size: clamp(18px, 3.5vw, 32px); }
  .title1._line {
    text-align: center;
    font-size: clamp(18px, 3.5vw, 30px);
    border-bottom: #0073b1 1px solid;
    padding-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto; }
  .title1 span {
    display: block;
    font-size: 60%; }
    .title1 span._small-center {
      font-size: 15px;
      text-align: center; }
      @media (max-width: 480px) {
        .title1 span._small-center {
          font-size: 12px; } }

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear; }

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%; }

.mv {
  position: relative; }
  .mv img {
    width: 100%;
    height: auto; }
  .mv .catch1 {
    position: absolute;
    width: 15vw;
    right: 34vw;
    bottom: -2.5vw;
    z-index: 1; }
  .mv .catch2 {
    position: absolute;
    width: 13vw;
    right: 19vw;
    bottom: 0vw;
    z-index: 1; }
  .mv .catch3 {
    position: absolute;
    width: 15vw;
    right: 1.5vw;
    bottom: -4vw;
    z-index: 1; }
  @media (max-width: 640px) {
    .mv .catch1 {
      width: 18vw;
      right: 40vw;
      bottom: -3.5vw; }
    .mv .catch2 {
      width: 17vw;
      right: 21vw;
      bottom: -1vw; }
    .mv .catch3 {
      width: 18vw;
      right: 1.5vw;
      bottom: -5vw; } }
  @media (max-width: 480px) {
    .mv .catch1 {
      width: 21vw;
      right: 45vw;
      bottom: -18vw; }
    .mv .catch2 {
      width: 19vw;
      right: 23vw;
      bottom: -12vw; }
    .mv .catch3 {
      width: 20vw;
      right: 1.5vw;
      bottom: -15vw; } }

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333; }

.swiper-button-prev {
  width: 30px;
  left: 0; }
  .swiper-button-prev:after {
    display: block;
    background: url("../images/arrow2.png") no-repeat;
    background-size: 26px;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-position: center center; }

.swiper-button-next {
  width: 30px;
  right: 0; }
  .swiper-button-next:after {
    display: block;
    background: url("../images/arrow2.png") no-repeat;
    background-size: 26px;
    transform: scale(-1, 1);
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-position: center center; }

.cta a {
  display: block;
  background: #000;
  font-size: clamp(16px, 5vw, 30px);
  width: fit-content;
  margin: 0 auto;
  padding: 15px 50px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all linear 0.3s; }
  .cta a:hover {
    transform: scale(1.03, 1.03); }

.footer {
  display: flex;
  padding-bottom: clamp(30px, 5%, 60px); }
  .footer .photos {
    width: 30%; }
  .footer .text {
    width: 40%;
    padding: 0 10px 0 20px; }
    .footer .text h5 {
      font-size: 23px;
      font-weight: bold; }
      .footer .text h5 span {
        display: block;
        font-size: 14px; }
    .footer .text .tel a {
      font-size: 25px;
      font-weight: bold;
      text-decoration: none; }
      .footer .text .tel a span {
        font-size: 13px;
        font-weight: normal; }
    .footer .text p {
      font-size: 15px;
      line-height: 1.6; }
  .footer .map {
    width: 30%;
    background: #fff; }
  @media (max-width: 820px) {
    .footer {
      display: block;
      text-align: center; }
      .footer img {
        width: 100%;
        height: auto; }
      .footer .photos {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px; }
      .footer .text {
        width: 100%;
        padding: 0;
        margin-bottom: 20px; }
      .footer .map {
        width: 100%;
        max-width: 400px;
        margin: 0 auto; } }

.menubtn {
  display: none;
  position: fixed;
  width: 45px;
  top: 10px;
  right: 10px;
  padding: 8px;
  border-radius: 5px;
  height: 45px;
  z-index: 3; }
  @media (max-width: 1201px) {
    .menubtn {
      display: block; } }
  .menubtn div {
    display: block;
    content: "";
    font-size: 0;
    background: #333;
    border-radius: 10px;
    width: 100%;
    height: 3px;
    margin-bottom: 10px;
    transition: all linear 0.2s; }
    .menubtn div:last-of-type {
      margin-bottom: 0; }
  .menubtn.on div:nth-of-type(1) {
    transform: rotate(45deg);
    transform-origin: left top;
    margin: 3px 0 0 5px; }
  .menubtn.on div:nth-of-type(2) {
    display: none; }
  .menubtn.on div:nth-of-type(3) {
    transform: rotate(-45deg);
    transform-origin: right top;
    margin: -3px 0 0 -5px; }
  @media (max-width: 480px) {
    .menubtn {
      width: 35px;
      height: 35px;
      top: 10px;
      right: 10px;
      padding: 7px;
      border-radius: 3px; }
      .menubtn div {
        height: 2px;
        margin-bottom: 7px; }
      .menubtn.on div:nth-of-type(1) {
        transform: rotate(45deg);
        transform-origin: left top;
        margin: 2px 0 0 4px; }
      .menubtn.on div:nth-of-type(3) {
        transform: rotate(-45deg);
        transform-origin: right top;
        margin: -2px 0 0 -3px; } }

.layer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 1; }
  @media (max-width: 820px) {
    .layer {
      top: 60px;
      height: calc(100vh - 60px); } }
  .layer.on {
    display: block; }

body {
  display: block;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: clamp(15px, 1.1vw, 17px);
  color: #333;
  background: url("../images/bg.png") no-repeat;
  background-size: 100%;
  background-position: center center;
  background-attachment: fixed; }
  @media (max-width: 480px) {
    body {
      background: none; }
      body:before {
        display: block;
        width: 100vw;
        height: 100vh;
        background: url("../images/bg_sp.png") no-repeat;
        background-size: 100%;
        background-position: center center;
        position: fixed;
        z-index: -1;
        content: "";
        top: 0;
        left: 0; } }

.pagetop {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  cursor: pointer; }
  .pagetop img {
    width: 100%;
    height: auto; }
  @media (max-width: 480px) {
    .pagetop {
      width: 50px;
      height: 50px;
      bottom: 5px;
      right: 5px; } }

#footer {
  display: block;
  width: 100%;
  background: #fff;
  padding-top: 30px;
  text-align: center; }
  #footer .logo {
    display: block;
    width: 200px;
    margin: 0 auto clamp(30px, 4%, 50px); }
    @media (max-width: 480px) {
      #footer .logo {
        width: 120px; } }
  #footer h5 {
    display: block;
    font-size: clamp(17px, 1.2vw, 20px);
    margin-bottom: 1.5em; }
  #footer strong {
    display: block;
    margin-bottom: clamp(30px, 5%, 60px); }
  #footer .footer_sns {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(30px, 5%, 60px); }
    #footer .footer_sns a {
      display: block;
      padding: 0 5px;
      margin: 0 5px; }
  #footer .ft-link {
    display: block;
    background: #0073b1;
    padding: clamp(30px, 5%, 60px) 15px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: left; }
    #footer .ft-link a {
      cursor: pointer; }
    #footer .ft-link b {
      display: block;
      margin-bottom: 1em;
      font-weight: 600; }
    #footer .ft-link .d-flex {
      justify-content: center; }
      #footer .ft-link .d-flex .box {
        width: fit-content;
        padding: 0 clamp(10px, 2%, 60px);
        padding-bottom: 30px; }
      @media (max-width: 480px) {
        #footer .ft-link .d-flex {
          justify-content: flex-start; }
          #footer .ft-link .d-flex .box {
            width: 50%; } }
    #footer .ft-link ul {
      padding-left: 0;
      list-style-type: none; }
      #footer .ft-link ul li {
        margin: 5px 0; }
        #footer .ft-link ul li a {
          transition: all linear 0.3s;
          font-size: 85%; }
          #footer .ft-link ul li a:hover {
            text-decoration: underline; }

.bg-white {
  display: block;
  width: 100%;
  background: #fff;
  padding: clamp(30px, 5%, 60px) 0; }

.bg-gray {
  background: #eeeeef;
  padding: clamp(40px, 5%, 100px) 10px; }

.studio_photos {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 45px; }
  @media (max-width: 480px) {
    .studio_photos {
      padding-left: 0;
      padding-right: 0; }
      .studio_photos .swiper-button-prev,
      .studio_photos .swiper-button-next {
        display: none; } }
  .studio_photos .swiper-slide {
    position: relative; }
    .studio_photos .swiper-slide p {
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      color: #fff;
      padding: 5px;
      font-size: 12px;
      line-height: 1.2;
      background: rgba(0, 0, 0, 0.5);
      margin-bottom: 0; }

.area01 .sub_t {
  text-align: center;
  margin-bottom: 30px; }
  .area01 .sub_t h3 {
    display: block;
    background: #000;
    padding: 5px 15px;
    font-size: 20px;
    color: #fff;
    width: fit-content;
    margin: 0 auto 5px; }
.area01 ul {
  display: flex;
  flex-wrap: wrap; }
  .area01 ul li {
    width: calc(33.333% - 40px);
    margin: 0 20px;
    position: relative;
    padding-bottom: 11vw; }
    @media (max-width: 1080px) {
      .area01 ul li {
        width: calc(33.333% - 20px);
        margin: 0 10px; } }
    .area01 ul li em {
      display: block;
      width: fit-content;
      font-style: normal;
      border: #000 1px solid;
      padding: 5px 10px;
      font-size: 16px;
      line-height: 1.2;
      margin-bottom: 1.5em; }
      @media (max-width: 480px) {
        .area01 ul li em {
          margin-bottom: 10px; } }
    .area01 ul li strong {
      display: block;
      margin-bottom: 10px;
      font-size: 19px; }
    .area01 ul li .pict_wrap {
      display: flex;
      justify-content: space-between;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%; }
      .area01 ul li .pict_wrap .pict {
        width: calc(50% - 2px); }
    @media (max-width: 820px) {
      .area01 ul li {
        width: 100%;
        padding-bottom: 0;
        margin: 0; }
        .area01 ul li:not(:last-of-type) {
          margin-bottom: 60px; } }
    @media (max-width: 820px) and (max-width: 480px) {
      .area01 ul li:not(:last-of-type) {
        margin-bottom: 30px; } }
    @media (max-width: 820px) {
        .area01 ul li .pict_wrap {
          position: relative; } }
.area01 .floormap {
  max-width: 1200px;
  margin: 0 auto; }
  @media (max-width: 480px) {
    .area01 .floormap {
      width: calc(100% + 10px);
      margin-left: -5px;
      margin-right: -5px; } }

.area02 .price_wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto; }
  .area02 .price_wrap .box {
    border: #000 1px solid;
    border-radius: 20px;
    background: #fff;
    padding: 0 40px 30px; }
    .area02 .price_wrap .box strong {
      display: block;
      background: #000;
      font-size: 16px;
      line-height: 1.2;
      padding: 5px 10px;
      width: fit-content;
      margin: -15px auto 40px;
      color: #fff;
      letter-spacing: 0.1em; }
      .area02 .price_wrap .box strong span {
        font-size: 13px;
        font-weight: normal; }
    .area02 .price_wrap .box ul {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 0; }
      @media (max-width: 480px) {
        .area02 .price_wrap .box ul {
          justify-content: center; } }
      .area02 .price_wrap .box ul li {
        background: #eeeeef;
        padding: 10px;
        border-radius: 5px;
        font-weight: bold;
        margin: 5px; }
        .area02 .price_wrap .box ul li span {
          font-size: 80%;
          font-weight: normal; }
    .area02 .price_wrap .box._kihon {
      width: calc(50% - 15px); }
    .area02 .price_wrap .box._option {
      width: calc(50% - 15px);
      text-align: center; }
      .area02 .price_wrap .box._option table {
        font-size: 15px;
        width: 100%; }
        .area02 .price_wrap .box._option table tr th {
          padding: 8px 5px;
          text-align: left; }
        .area02 .price_wrap .box._option table tr td {
          padding: 8px 5px;
          text-align: right; }
        .area02 .price_wrap .box._option table tr:nth-of-type(even) {
          background: #eeeeef; }
  @media (max-width: 820px) {
    .area02 .price_wrap {
      flex-wrap: wrap; }
      .area02 .price_wrap .box {
        padding: 0 20px 20px; }
        .area02 .price_wrap .box._kihon, .area02 .price_wrap .box._option {
          width: 100%; }
        .area02 .price_wrap .box._kihon {
          margin-bottom: 40px; }
        .area02 .price_wrap .box strong {
          margin-bottom: 20px; } }
  @media (max-width: 480px) {
    .area02 .price_wrap .box {
      padding: 0 10px 10px;
      border-radius: 10px; }
      .area02 .price_wrap .box strong {
        margin-bottom: 15px; }
      .area02 .price_wrap .box._option h4 {
        font-size: 18px; }
      .area02 .price_wrap .box._option table {
        font-size: 75%; }
        .area02 .price_wrap .box._option table tr th {
          padding: 7px 5px;
          word-break: keep-all;
          white-space: nowrap; }
        .area02 .price_wrap .box._option table tr td {
          padding: 7px 5px; } }

.area03 {
  background: #e3f2f4;
  position: relative;
  padding: 20px; }
  @media (max-width: 480px) {
    .area03 {
      background: #efefef; } }
  .area03 .hayawari {
    display: block;
    position: absolute;
    top: -85px;
    left: calc(50% - 280px);
    width: 280px; }
    .area03 .hayawari img {
      width: 100%;
      height: auto;
      transform: rotate(-3deg); }
    @media (max-width: 820px) {
      .area03 .hayawari {
        top: -50px;
        left: calc(50% - 200px);
        width: 200px; } }
    @media (max-width: 480px) {
      .area03 .hayawari {
        top: -60px;
        left: calc(50% - 175px);
        width: 200px; } }
  .area03 ul {
    display: flex;
    margin-bottom: 30px; }
    .area03 ul li {
      width: 33.333%;
      padding: 0 15px;
      text-align: center; }
      .area03 ul li:not(:last-of-type) {
        border-right: #0073b1 1px dotted; }
      .area03 ul li h4 {
        display: block;
        background: #0073b1;
        color: #fff;
        font-size: 18px;
        padding: 5px 15px;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 20px; }
        .area03 ul li h4 span {
          font-size: 70%;
          line-height: 1.5; }
        .area03 ul li h4:after {
          display: block;
          width: 10px;
          position: absolute;
          bottom: -10px;
          left: calc(50% - 5px);
          content: "";
          border-top: #0073b1 10px solid;
          border-left: transparent 10px solid;
          border-right: transparent 10px solid; }
      .area03 ul li strong {
        font-size: clamp(16px, 4vw, 35px); }
        .area03 ul li strong span {
          font-size: 50%; }
        .area03 ul li strong:after {
          display: none; }
    @media (max-width: 480px) {
      .area03 ul {
        margin-bottom: 15px; }
        .area03 ul li {
          padding: 0 10px; }
          .area03 ul li h4 {
            font-size: 16px;
            padding: 5px;
            font-size: 16px;
            margin-bottom: 10px; }
            .area03 ul li h4 span {
              display: none; }
            .area03 ul li h4:after {
              display: block;
              width: 5px;
              position: absolute;
              bottom: -5px;
              left: calc(50% - 2.5px);
              content: "";
              border-top: #0073b1 5px solid;
              border-left: transparent 5px solid;
              border-right: transparent 5px solid; }
          .area03 ul li strong span {
            display: block; } }
  .area03 em {
    display: block;
    border: #0073b1 2px solid;
    padding: 15px;
    color: #0073b1;
    font-style: normal;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    margin: 0 15px 20px; }
    @media (max-width: 480px) {
      .area03 em {
        font-size: 16px;
        padding: 10px;
        margin-bottom: 10px; } }
  .area03 .txt {
    display: flex;
    justify-content: center;
    font-size: 18px;
    text-align: center; }
    .area03 .txt u {
      text-decoration: none; }
      @media (max-width: 480px) {
        .area03 .txt u {
          display: block;
          font-size: 0;
          text-indent: -9999px; } }
    .area03 .txt span {
      font-size: 80%; }
    .area03 .txt b {
      font-size: 120%; }
      @media (max-width: 480px) {
        .area03 .txt b {
          font-size: 100%; } }
