@charset "UTF-8";
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th {
  font-weight: normal;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

input,
button {
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1470px;
}
@media print, screen and (max-width: 1510px) {
  .container {
    max-width: none;
  }
}

/* ------------------------------------------------------------
// aos
------------------------------------------------------------ */
[data-aos] {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos=fade-up] {
  transform: translateY(20px);
}

[data-aos=fade-down] {
  transform: translateY(-20px);
}

[data-aos=fade-left] {
  transform: translateX(-20px);
}

[data-aos=fade-right] {
  transform: translateX(20px);
}

[data-aos=zoom-in] {
  transform: scale(0.9);
}

[data-aos=zoom-out] {
  transform: scale(1.1);
}

/* ------------------------------------------------------------
// photo-ofi
------------------------------------------------------------ */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------
// paging
------------------------------------------------------------ */
.paging .current,
.paging .paging-text {
  overflow: hidden;
  display: inline-block;
  color: #333333;
  margin: 0px 2px;
  zoom: 1;
}
.paging .current a,
.paging .paging-text a {
  display: block;
  padding: 3px 8px;
  border: 1px solid #cccccc;
}
.paging .current a:hover,
.paging .paging-text a:hover {
  color: #ffffff;
  background: #aaaaaa;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}
.paging .current {
  color: #ffffff;
  padding: 3px 8px;
  background: #333333;
  border: 1px solid #333333;
  cursor: pointer;
}

/* ------------------------------------------------------------
// Back to Top
------------------------------------------------------------ */
.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  transform: translateY(150px);
  opacity: 0;
  z-index: 10;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
@media print, screen and (max-width: 991px) {
  .pagetop a img {
    max-width: 60px;
  }
}

.pagetop.UpMove {
  animation: UpAnime 1s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagetop.DownMove {
  animation: DownAnime 1s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}
/* ------------------------------------------------------------
// * html・body
------------------------------------------------------------ */
*,
*:before,
*:after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body,
html {
  height: 100%;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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

.ovr img {
  opacity: 1;
}
.ovr:hover img {
  opacity: 0.8;
}

/* ------------------------------------------------------------
// iframe
------------------------------------------------------------ */
.google-maps iframe {
  vertical-align: bottom;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ------------------------------------------------------------
// layout
------------------------------------------------------------ */
.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

/* ------------------------------------------------------------
// ul ol
------------------------------------------------------------ */
.disc {
  list-style-type: none;
}
.disc li {
  position: relative;
  padding-left: 1.2em;
}
.disc li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.7em;
  left: 0.5em;
  width: 4px;
  height: 4px;
  background: #333333;
  border-radius: 2px;
}

.decimal li {
  list-style-type: decimal;
  margin-left: 1em;
}

/* ------------------------------------------------------------
// header
------------------------------------------------------------ */
header .header-fixed {
  position: fixed;
  top: 30px;
  right: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 60px;
  background: #ffffff;
  border-radius: 45px;
  z-index: 500;
}
header .header-fixed .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1399px) {
  header .header-fixed {
    right: 15px;
    left: 15px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 1199px) {
  header .header-fixed {
    height: 80px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 767px) {
  header .header-fixed {
    right: 10px;
    left: 10px;
    height: 60px;
    padding: 0 15px;
    border-radius: 6px;
  }
  header .header-fixed .logo img {
    width: 180px;
  }
}

/* ------------------------------------------------------------
// navigation
------------------------------------------------------------ */
.sp-nav-btn {
  display: none;
}
@media screen and (max-width: 1199px) {
  .sp-nav-btn {
    display: block;
  }
}

nav .sp-gnav {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  nav ul.pc-nav {
    display: none !important;
  }
  nav .sp-gnav {
    display: block !important;
  }
}

nav ul.pc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 30px;
}
nav ul.pc-nav li a {
  position: relative;
  display: block;
  font-family: "Kiwi Maru", serif;
  font-size: 18px;
  color: #333333;
  line-height: 1.4;
  text-align: center;
  padding-left: 28px;
}
nav ul.pc-nav li a .icon {
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  opacity: 0; /* 最初は非表示 */
  transform: scale(0.8); /* 少し縮小しておく */
  transition: opacity 0.3s ease, transform 0.3s ease; /* スムーズなアニメーション */
}
nav ul.pc-nav li a span {
  display: block;
  font-family: "Signika", sans-serif;
  font-size: 14px;
  color: #00a99d;
}
nav ul.pc-nav li a:hover .icon, nav ul.pc-nav li a.current .icon {
  opacity: 1; /* 表示 */
  transform: scale(1); /* 通常サイズに拡大 */
}
@media screen and (max-width: 1399px) {
  nav ul.pc-nav {
    gap: 0 20px;
  }
  nav ul.pc-nav li a {
    font-size: 16px;
  }
  nav ul.pc-nav li a span {
    font-size: 13px;
  }
}

body.nav-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  z-index: 997;
  display: none;
}

.sp-nav-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0 10px;
  z-index: 999;
}
.sp-nav-btn:hover {
  cursor: pointer;
}
.sp-nav-btn span,
.sp-nav-btn span::before,
.sp-nav-btn span::after {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #333333;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.4s;
}
.sp-nav-btn span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp-nav-btn span::before {
  content: "";
  transform: translateY(-10px) rotate(0deg);
}
.sp-nav-btn span::after {
  content: "";
  transform: translateY(10px) rotate(0deg);
}

.sp-on span {
  background: transparent !important;
}
.sp-on span::before {
  transform: rotate(45deg) !important;
}
.sp-on span::after {
  transform: rotate(-45deg) !important;
}

nav .sp-gnav {
  position: fixed;
  top: 0;
  right: -100%; /* 初期位置を右側に設定 */
  width: 80%; /* 任意の幅 */
  max-height: 100vh;
  min-height: 100vh;
  background: #f6f4f6;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease; /* 右からスライドインするアニメーション */
  overflow-y: auto; /* 縦方向のみスクロール可能に */
  z-index: 998;
}
nav .sp-gnav .logo {
  display: flex;
  align-items: center;
  padding: 20px 80px 20px 15px;
  background: #ffffff;
}
nav .sp-gnav .logo img {
  max-height: 60px;
}
nav .sp-gnav ul {
  padding-bottom: 30px;
}
nav .sp-gnav ul li {
  border-bottom: 1px dashed #ffffff;
}
nav .sp-gnav ul li a {
  display: block;
  text-align: center;
  color: #333333;
  padding: 20px;
}
nav .sp-gnav ul li a.current, nav .sp-gnav ul li a:hover {
  background: #ffe056;
}
nav .contact-btn {
  text-align: center;
}
nav .contact-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 50px;
  padding: 0 15px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 25px;
  transition: 0.4s;
}
nav .contact-btn a:hover {
  color: #ffffff;
  background: #00528d;
}

/* ------------------------------------------------------------
// footer
------------------------------------------------------------ */
.footer-box {
  padding: 110px 0 90px;
  background: #f7d6bc;
}
.footer-box .logo {
  text-align: center;
  margin: 0 30px 100px;
}
.footer-box .address-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-box .address-box .box {
  display: flex;
  gap: 20px;
  width: calc((100% - 30px) / 2);
}
.footer-box .address-box .box .studio-name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  width: 200px;
  height: 32px;
  padding-top: 2px;
  background: #f6f4f6;
  border-radius: 6px;
}
.footer-box .address-box .box .studio-name span {
  font-size: 18px;
}
.footer-box .address-box .box .address-tel {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}
.footer-box .address-box .box .address-tel span,
.footer-box .address-box .box .address-tel a {
  color: #333333;
}
.footer-box .address-box .box .address-tel span:hover,
.footer-box .address-box .box .address-tel a:hover {
  color: #333333;
}
@media print, screen and (max-width: 767px) {
  .footer-box {
    padding: 50px 0;
  }
  .footer-box .logo {
    text-align: center;
    margin: 0 30px 50px;
  }
}
@media print, screen and (max-width: 767px) {
  .footer-box .address-box {
    flex-direction: column;
    gap: 40px;
  }
  .footer-box .address-box .box {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .footer-box .address-box .box .studio-name {
    width: 100%;
  }
  .footer-box .address-box .box .address-tel {
    padding: 0 15px;
  }
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  padding: 10px 15px 90px;
  background: #f7d6bc;
  border-top: 1px solid #000000;
}
.footer-nav li {
  text-align: center;
  width: calc((100% - 80px) / 5);
}
.footer-nav li a {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  color: #333333;
  padding: 0 5px;
}
.footer-nav li a span {
  display: block;
  font-family: "Signika", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}
.footer-nav li a:hover {
  color: #ac5e5e;
}
@media print, screen and (max-width: 1299px) {
  .footer-nav {
    display: none;
  }
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  height: 40px;
  background: #333333;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  body {
    font-size: 12pt;
  }
  nav {
    display: none !important;
  }
  a {
    text-decoration: none !important;
  }
  table,
  p {
    page-break-inside: avoid !important;
  }
  .header-first {
    display: none;
  }
  .header-fixed,
  .header-contents {
    position: static !important;
  }
  .pc-nav-first,
  .pc-nav-scroll {
    display: none !important;
  }
  .pagetop {
    display: none !important;
  }
}
/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Signika", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.02em;
  background: #f6f4f6;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* ------------------------------------------------------------
// spacer
------------------------------------------------------------ */
.spacer {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .spacer {
    height: 90px;
  }
}

/* ------------------------------------------------------------
// Device Specific Display
------------------------------------------------------------ */
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
/* ------------------------------------------------------------
// font color
------------------------------------------------------------ */
.kiwimaru {
  font-family: "Kiwi Maru", serif !important;
}

.text-red {
  color: #fe6666;
}

/* ------------------------------------------------------------
// link
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  color: #333333;
  text-decoration: none;
}

.link-button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  max-width: 470px;
  width: 100%;
  height: 90px;
  background: #ffe056;
  border-radius: 10px;
  box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.6), inset 8px 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.link-button a img {
  position: absolute;
  right: 25px;
}
.link-button a:hover {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .link-button a {
    height: 60px;
  }
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-stacked {
  width: 100%;
}
.table-stacked tr {
  display: grid;
  grid-template-columns: 260px auto;
}
.table-stacked tr th,
.table-stacked tr td {
  text-align: left;
  vertical-align: top;
  padding: 1.5em;
  border-top: 1px dashed #cccccc;
}
.table-stacked tr th {
  font-weight: 700;
  background: #fafafa;
}
.table-stacked tr td {
  background: #ffffff;
}
.table-stacked tr:first-child th, .table-stacked tr:first-child td {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .table-stacked tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-stacked tr th,
  .table-stacked tr td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 1em;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.white-wrap {
  padding: 120px 0;
  background: #ffffff;
}
@media print, screen and (max-width: 767px) {
  .white-wrap {
    padding: 60px 0;
  }
}

.page-title-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
@media print, screen and (max-width: 767px) {
  .page-title-img {
    align-items: flex-end;
    height: 240px;
  }
}

.page-title {
  text-align: center;
  width: 100%;
  margin-top: 120px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.9);
}
.page-title h2 {
  font-family: "Kiwi Maru", serif;
  font-size: 60px;
  font-weight: 500;
  color: #fe6666;
  line-height: 1.2;
}
.page-title h2 span {
  display: block;
  font-family: "Signika", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #cccccc;
  margin-top: 20px;
}
@media print, screen and (max-width: 767px) {
  .page-title {
    margin-top: 0;
    padding: 10px;
  }
  .page-title h2 {
    font-size: 32px;
  }
  .page-title h2 span {
    font-size: 14px;
    color: #333333;
    margin-top: 10px;
  }
}

.rainbow {
  height: 10px;
  animation: 20s rainbow linear infinite;
  border-top: 1px solid #ffffff;
}
@media print, screen and (max-width: 767px) {
  .rainbow {
    height: 5px;
  }
}

@keyframes rainbow {
  0% {
    background: #e60000;
  }
  14% {
    background: #f39800;
  }
  28% {
    background: #fff100;
  }
  42% {
    background: #009944;
  }
  56% {
    background: #0068b7;
  }
  70% {
    background: #1d2088;
  }
  85% {
    background: #920783;
  }
  100% {
    background: #e60000;
  }
}
.section-title-center {
  text-align: center;
  margin-bottom: 40px;
}
.section-title-center h3 {
  font-family: "Kiwi Maru", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 20px;
}
.section-title-center h3 span {
  display: block;
  font-family: "Signika", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e8521d;
  margin-top: 10px;
}
@media print, screen and (max-width: 767px) {
  .section-title-center {
    margin-bottom: 30px;
  }
  .section-title-center h3 {
    font-size: 22px;
  }
}

.section-title-left {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.section-title-left h3 {
  font-family: "Kiwi Maru", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.section-title-left h3 span {
  display: block;
  font-family: "Signika", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e8521d;
  margin-top: 10px;
}
@media print, screen and (max-width: 767px) {
  .section-title-left {
    gap: 15px;
    margin-bottom: 30px;
  }
  .section-title-left h3 {
    font-size: 22px;
  }
  .section-title-left h3 span {
    margin-top: 5px;
  }
}