@charset "UTF-8";
/* ============================================================
// index
============================================================ */
/* ------------------------------------------------------------
// CONCEPT
------------------------------------------------------------ */
.concept-wrap {
  overflow: visible;
  z-index: 2;
  position: relative;
}
.concept-wrap .concept-clip {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}
.concept-wrap .md-mark-1 {
  position: absolute;
  top: 50px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(460px);
}
.concept-wrap .md-mark-2 {
  position: absolute;
  top: 320px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(820px);
}
.concept-wrap .md-mark-3 {
  position: absolute;
  top: 230px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(-470px);
}
.concept-wrap .md-mark-4 {
  position: absolute;
  top: 360px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(-800px);
}
.concept-wrap .circle-photo-1 {
  position: absolute;
  top: 120px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(590px);
}
.concept-wrap .circle-text-1 {
  position: absolute;
  top: 120px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(590px);
  animation: spin-1 30s linear infinite;
}
.concept-wrap .circle-photo-2 {
  position: absolute;
  top: 0;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(-690px);
}
.concept-wrap .circle-text-2 {
  position: absolute;
  top: 0;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(-690px);
  animation: spin-2 30s linear infinite;
}
.concept-wrap .circle-photo-3 {
  position: absolute;
  top: 350px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(-540px);
  z-index: 10;
}
.concept-wrap .circle-text-3 {
  position: absolute;
  top: 350px;
  left: 50%; /* 親の左から中央へ */
  transform: translateX(-50%) translateX(-540px);
  animation: spin-3 30s linear infinite;
  z-index: 10;
}
@keyframes spin-1 {
  from {
    transform: translateX(-50%) translateX(590px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) translateX(590px) rotate(360deg);
  }
}
@keyframes spin-2 {
  from {
    transform: translateX(-50%) translateX(-690px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) translateX(-690px) rotate(360deg);
  }
}
@keyframes spin-3 {
  from {
    transform: translateX(-50%) translateX(-540px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) translateX(-540px) rotate(360deg);
  }
}
.concept-wrap .content-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 120px;
  padding: 0 20px;
}
.concept-wrap .content-box .top-txt {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}
.concept-wrap .content-box .top-txt br {
  display: none;
}
.concept-wrap .content-box .txt-box {
  max-width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .concept-wrap .circle-photo-1,
  .concept-wrap .circle-photo-2,
  .concept-wrap .circle-photo-3,
  .concept-wrap .circle-text-1,
  .concept-wrap .circle-text-2,
  .concept-wrap .circle-text-3 {
    display: none;
  }
  .concept-wrap .content-box .top-txt {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .concept-wrap .content-box .top-txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .concept-wrap .content-box .top-txt br {
    display: inline;
  }
}

/* ------------------------------------------------------------
// ABOUT
------------------------------------------------------------ */
.gray-wrap {
  position: relative;
  z-index: 0;
  background: rgba(242, 242, 242, 0.75);
}
.gray-wrap .about-wrap {
  padding: 40px 20px 240px;
}
.gray-wrap .about-wrap .content-box {
  display: flex;
  gap: 100px;
  width: 100%;
}
.gray-wrap .about-wrap .content-box .logo-box {
  width: 44%;
  padding-top: 20px;
}
.gray-wrap .about-wrap .content-box .logo-box img {
  margin-left: auto;
}
.gray-wrap .about-wrap .content-box .txt-box {
  width: 56%;
}
.gray-wrap .about-wrap .content-box .txt-box .top-txt {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1460px) {
  .gray-wrap .about-wrap .content-box .txt-box .top-txt br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .gray-wrap .about-wrap {
    padding: 40px 20px 120px;
  }
  .gray-wrap .about-wrap .content-box {
    flex-direction: column;
    gap: 50px;
  }
  .gray-wrap .about-wrap .content-box .logo-box {
    width: 100%;
    padding-top: 0;
  }
  .gray-wrap .about-wrap .content-box .logo-box img {
    max-width: 240px;
    margin: 0 auto;
  }
  .gray-wrap .about-wrap .content-box .txt-box {
    width: 100%;
  }
  .gray-wrap .about-wrap .content-box .txt-box .top-txt {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .gray-wrap .about-wrap .content-box .txt-box p br {
    display: none;
  }
}

/* ------------------------------------------------------------
// MENU
------------------------------------------------------------ */
.menu-wrap {
  padding: 0 20px;
}
.menu-wrap .content-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 60px;
}
.menu-wrap .content-box .border-box {
  padding: 40px 60px;
  border: 2px solid #ba6a22;
  border-radius: 10px;
}
.menu-wrap .content-box .border-box .menu-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.menu-wrap .content-box .border-box .menu-box .box {
  display: flex;
  gap: 50px;
  width: 100%;
}
.menu-wrap .content-box .border-box .menu-box .box .photo {
  width: 221px;
}
.menu-wrap .content-box .border-box .menu-box .box .menu-item {
  flex: 1;
}
.menu-wrap .content-box .border-box .menu-box .box .menu-item .name {
  font-size: 36px;
}
.menu-wrap .content-box .border-box .menu-box .box .menu-item .txt {
  font-size: 16px;
}
.menu-wrap .content-box .border-box .menu-box .box .price {
  flex: 1;
  font-size: 24px;
}
.menu-wrap .content-box .border-box .sail-txt {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  padding: 20px 0;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
}
.menu-wrap .content-box .border-box .sail-txt .txt {
  font-size: 24px;
}
.menu-wrap .content-box .border-box .sail-txt br {
  display: none;
}
.menu-wrap .content-box .border-box .plan-set-sample {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1324px) {
  .menu-wrap .content-box .border-box {
    padding: 30px 20px;
  }
  .menu-wrap .content-box .border-box .menu-box .box {
    gap: 40px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .photo {
    width: 180px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .menu-item .name {
    font-size: 32px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .price {
    font-size: 22px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .price .pc-only {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .menu-wrap .content-box .border-box {
    padding: 30px 20px;
  }
  .menu-wrap .content-box .border-box .menu-box .box {
    gap: 20px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .photo {
    width: 140px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .menu-item .name {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .menu-item .txt {
    font-size: 15px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .price {
    font-size: 18px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .price .txt-small {
    font-size: 12px;
  }
  .menu-wrap .content-box .border-box .sail-txt br {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .menu-wrap .content-box .border-box .menu-box {
    gap: 60px;
  }
  .menu-wrap .content-box .border-box .menu-box .box {
    flex-direction: column;
    text-align: center;
  }
  .menu-wrap .content-box .border-box .menu-box .box .photo {
    width: auto;
    margin: 0 auto;
  }
  .menu-wrap .content-box .border-box .menu-box .box .menu-item {
    flex: 1;
  }
  .menu-wrap .content-box .border-box .menu-box .box .menu-item .name {
    font-size: 24px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .menu-item .txt {
    font-size: 16px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .price {
    font-size: 20px;
  }
  .menu-wrap .content-box .border-box .menu-box .box .price .txt-small {
    font-size: 14px;
  }
  .menu-wrap .content-box .border-box .sail-txt {
    font-size: 24px;
  }
  .menu-wrap .content-box .border-box .sail-txt .txt {
    font-size: 18px;
  }
  .menu-wrap .content-box .border-box .plan-set-sample {
    flex-direction: column;
    gap: 30px;
  }
  .menu-wrap .content-box .border-box .plan-set-sample .box:first-child {
    padding-bottom: 30px;
    border-bottom: 1px dashed #ba6a22;
  }
  .menu-wrap .content-box .border-box .plan-set-sample .box img {
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
// INFO
------------------------------------------------------------ */
.info-wrap {
  padding: 0 20px;
}
.info-wrap .content-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 80px;
}
.info-wrap .content-box .top-txt {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}
.info-wrap .content-box .border-box {
  position: relative;
  padding: 50px 50px 50px 150px;
  border: 2px solid #cccccc;
  border-radius: 10px;
}
.info-wrap .content-box .border-box:not(:last-child) {
  margin-bottom: 90px;
}
.info-wrap .content-box .border-box .ttl {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 25px;
  text-align: center;
  padding: 5px 0.5em;
  background: #ffffff;
}
.info-wrap .content-box .border-box .icon {
  position: absolute;
  top: 20px;
  left: -320px;
}
.info-wrap .content-box .border-box dl dt {
  font-size: 24px;
  margin-left: -0.5em;
}
.info-wrap .content-box .border-box dl dd {
  font-size: 24px;
  margin-bottom: 30px;
}
.info-wrap .content-box .border-box dl dd:last-child {
  margin-bottom: 0;
}
.info-wrap .content-box .border-box ul {
  margin: 0 0 30px 1.5em;
}
.info-wrap .content-box .border-box ul li {
  list-style-type: disc;
  font-size: 24px;
}
.info-wrap .content-box .border-box p {
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .info-wrap .content-box .border-box {
    padding: 60px 20px 30px;
  }
  .info-wrap .content-box .border-box .ttl {
    font-size: 20px;
    min-width: 260px;
  }
  .info-wrap .content-box .border-box dl dt {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .info-wrap .content-box .border-box dl dd {
    font-size: 18px;
  }
  .info-wrap .content-box .border-box ul li {
    font-size: 20px;
  }
  .info-wrap .content-box .border-box p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .info-wrap .content-box .top-txt {
    font-size: 24px;
  }
  .info-wrap .content-box .border-box .ttl {
    font-size: 18px;
  }
  .info-wrap .content-box .border-box dl dt {
    font-size: 18px;
  }
  .info-wrap .content-box .border-box dl dd {
    font-size: 16px;
  }
  .info-wrap .content-box .border-box ul li {
    font-size: 18px;
  }
  .info-wrap .content-box .border-box p {
    font-size: 16px;
  }
}

/* ------------------------------------------------------------
// NEWS
------------------------------------------------------------ */
.news-wrap {
  padding: 0 20px;
}
.news-wrap .content-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 80px;
}

/* ------------------------------------------------------------
// ACCESS
------------------------------------------------------------ */
.orange-wrap {
  position: relative;
  background: rgba(186, 106, 34, 0.15);
}
.orange-wrap .access-wrap {
  padding: 10px 20px 0;
}
.orange-wrap .access-wrap .content-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 120px;
}
.orange-wrap .access-wrap .content-box .top-txt {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}
.orange-wrap .access-wrap .content-box .white-box {
  width: 100%;
  margin-bottom: 40px;
  padding: 30px 120px 30px 220px;
  background: #ffffff;
  border-radius: 10px;
}
.orange-wrap .access-wrap .content-box .white-box table tr th,
.orange-wrap .access-wrap .content-box .white-box table tr td {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  padding: 5px 0;
}
.orange-wrap .access-wrap .content-box .white-box table tr th {
  position: relative;
  width: 140px;
  padding-right: 1.2em;
}
.orange-wrap .access-wrap .content-box .white-box table tr th::after {
  content: "："; /* ← コロン */
  position: absolute;
  right: 0; /* 常に右端に表示 */
  top: 5px;
}
.orange-wrap .access-wrap .content-box .photo-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 50px;
}
.orange-wrap .access-wrap .content-box .photo-list .photo {
  margin-bottom: 5px;
}
.orange-wrap .access-wrap .content-box .photo-list .txt {
  font-size: 16px;
  text-align: center;
}
.orange-wrap .access-wrap .content-box .google-maps {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .orange-wrap .access-wrap .content-box .white-box {
    width: 100%;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 10px;
  }
  .orange-wrap .access-wrap .content-box .white-box table tr th,
  .orange-wrap .access-wrap .content-box .white-box table tr td {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    padding: 5px 0;
  }
  .orange-wrap .access-wrap .content-box .white-box table tr th {
    position: relative;
    width: 120px;
    padding-right: 1.2em;
  }
  .orange-wrap .access-wrap .content-box .white-box table tr th::after {
    content: "："; /* ← コロン */
    position: absolute;
    right: 0; /* 常に右端に表示 */
    top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .orange-wrap .access-wrap .content-box .top-txt {
    font-size: 24px;
  }
  .orange-wrap .access-wrap .content-box .white-box table tr th,
  .orange-wrap .access-wrap .content-box .white-box table tr td {
    font-size: 16px;
  }
  .orange-wrap .access-wrap .content-box .white-box table tr th {
    width: 90px;
  }
  .orange-wrap .access-wrap .content-box .photo-list {
    gap: 10px;
  }
}
@media screen and (max-width: 575px) {
  .orange-wrap .access-wrap .content-box .photo-list {
    flex-direction: column;
    gap: 20px;
  }
  .orange-wrap .access-wrap .content-box .photo-list .photo img {
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
// CONTACT
------------------------------------------------------------ */
.contact-wrap {
  margin-bottom: 128px;
  padding: 0 20px;
}
.contact-wrap .content-box .top-txt {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}
.contact-wrap .content-box .tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 460px;
  height: 100px;
  margin: 0 auto;
  background: #ba6a22;
  border-radius: 30px;
}
.contact-wrap .content-box .tel-number span,
.contact-wrap .content-box .tel-number a {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
}
.contact-wrap .content-box .tel-time {
  font-size: 24px;
  line-height: 1;
  text-align: center;
  margin: 30px 0 25px;
}
.contact-wrap .content-box .line-qr img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-wrap .content-box .top-txt {
    font-size: 20px;
  }
  .contact-wrap .content-box .tel-number {
    gap: 10px;
    width: 280px;
  }
  .contact-wrap .content-box .tel-number img {
    width: 50px;
  }
  .contact-wrap .content-box .tel-number span,
  .contact-wrap .content-box .tel-number a {
    font-size: 24px;
  }
  .contact-wrap .content-box .tel-time {
    font-size: 16px;
    margin: 15px 0 25px;
  }
  .contact-wrap .content-box .line-qr img {
    width: 286px;
    margin: 0 auto;
  }
}