@charset "UTF-8";

* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
}
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  /* メインカラー（清潔感・信頼） */
  --main-color: #013c87;
  /* サブカラー（柔らかさ・女性向け） */
  --sub-color: #E8F6FD;
  /* アクセント（CTA・ボタン） */
  --accent-color: #FF8A00;
  /* 強調アクセント（ホバーなど） */
  --accent-hover: #E67600;
  /* アクセント（ピンク）：女性スタッフ・安心感 */
  --support-color: #FF8EAB;
/* アクセントカラー：輝き・注目（ボタンなど） */
  --accent-yellow-color: #FFD700;
  /* テキストカラー */
  --text-main: #333333;
  --text-sub: #666666;
  /* 背景 */
  --bg-white: #FFFFFF;
  --bg-light: #F7FBFE;
  /* 枠線・区切り */
  --border-color: #DCEAF3;
  /* 成功・チェック（理由・強み） */
  --success-color: #4CAF50;
}
body {
  font-family: "Noto Sans", Arial, sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);
}
a {
  color: var(--text-main);
  text-decoration: none;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: ease 0.3s;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.wrapper  {
  max-width: 1100px;
  padding: 0 16px;
  margin: 0 auto;
}
.wrapper-02  {
  max-width: 900px;
  padding: 0 16px;
  margin: 0 auto;
}
.wrapper-03  {
  max-width: 750px;
  padding: 0 16px;
  margin: 0 auto;
}
.en {
  font-family: Arial, Helvetica, sans-serif;
}
section {
  margin-bottom: 120px;
}
.sec-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 80px;
  color: var(--text-main);
  position: relative;
}
.sec-title .en {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 15px;
  color: var(--text-main);
}
.sec-title:before {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 120px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 2px;
}
.bg-light {
  background-color: var(--bg-light);  
}
.text {
  line-height: 30px;
}
.flex {
  display: flex;
  justify-content: space-between;
}
#services .flex.reverse {
  flex-direction: row-reverse;
}
.br-sp {
  display: none;
}
.br-pc {
  display: block;
}

/* --------------------------------
animation
-------------------------------- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 2.0s ease, transform 2s ease;
  will-change: opacity, transform;
}
.reveal {
  transform: translateY(24px); 
}
.reveal-left {
  opacity: 0;  transform: translateX(-30px);
}
.reveal-right {
  opacity: 0;  transform: translateX(30px);
}
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#reason .flex .item.reveal:nth-child(1) {
  transition-delay: 0s;
}
#reason .flex .item.reveal:nth-child(2) {
  transition-delay: 0.5s;
}
#reason .flex .item.reveal:nth-child(3) {
  transition-delay: 1.0s;
}
#reason .flex .item.reveal:nth-child(4) {
  transition-delay: 1.5s;
}
#reason .flex .item.reveal:nth-child(5) {
  transition-delay: 2.0s;
}
#service .house .air .flex .img.reveal:nth-child(1) {
  transition-delay: 0s;
}
#service .house .air .flex .img.reveal:nth-child(2) {
  transition-delay: 0.5s;
}
#service .list-2 .item.reveal:nth-child(1) {
  transition-delay: 0s;
}
#service .list-2 .item.reveal:nth-child(2) {
  transition-delay: 0.5s;
}
#service .list-2 .item.reveal:nth-child(3) {
  transition-delay: 1.0s;
}
#works .flex .bef.reveal {
  transition-delay: 0s;
}
#works .flex .aft.reveal {
  transition-delay: 0.5s;
}
#flow .flex .item.reveal:nth-child(1) {
  transition-delay: 0s;
}
#flow .flex .item.reveal:nth-child(3) {
  transition-delay: 0.5s;
}
#flow .flex .item.reveal:nth-child(5) {
  transition-delay: 1.0s;
}
#flow .flex .item.reveal:nth-child(7) {
  transition-delay: 1.5s;
}

/* --------------------------------
header
-------------------------------- */
#header {
  width: 100%;
  height: calc(80px + var(--safe-top));
  padding-top: var(--safe-top);
  transition: transform 0.35s ease, background-color 0.3s, box-shadow 0.3s;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  will-change: transform;
  backface-visibility: hidden;
}
#header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(60px + var(--safe-top));
  padding-top: var(--safe-top);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  z-index: 99;
}
#header.is-hidden {
  transform: translateY(calc(-100% - var(--safe-top)));
}
#header .inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .site-title {
  width: 340px;
  line-height: 1px;
  margin-left: 30px;
}
#header .site-title .logo-img img {
  width: 35%;
}
#header.is-fixed .site-title .logo-img img {
  width: 30%;
}
#nav {
  margin-right: 30px;
}
#nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 26px;
}
#nav .menu .item {
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
  line-height: 20px;
  font-size: 1rem;
}
#nav .menu .item {
  color: var(--text-main);
}
#nav .menu .item.no-border {
  border-right: 0
}
#nav-sp {
  display: none;
}
#menu-sp {
  display: none;
  z-index: 100;
}
/* --------------------------------
mainvisual
-------------------------------- */
#mainvisual {
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
#mainvisual .swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
#mainvisual  .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
#mainvisual  .swiper-slide img {
  height: 100vh;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
#mainvisual .swiper-button-prev,
#mainvisual .swiper-button-next {
  color: var(--bg-white);
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
#mainvisual .swiper-button-prev {
  left: 20px;
}
#mainvisual .swiper-button-next {
  right: 20px;
}
#mainvisual .swiper-button-prev::after,
#mainvisual .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
#mainvisual .concept {
  position: absolute;
  top: 16%;
  left: 8%;
  width: min(50%, 750px);
  z-index: 3;
}
#mainvisual .concept-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: 0rem;
  color: var(--text-main);
  margin-bottom: 30px;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.85),
    0 0 14px rgba(255, 255, 255, 0.55),
    0 2px 8px rgba(255, 255, 255, 0.45);
}
#mainvisual .concept .country .list .item .img {
  background-color: var(--bg-white);
  padding: 3px;
}
#mainvisual .sub-copy {
  font-size: 2rem;
  line-height: 45px;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.5),
    0 2px 6px rgba(255, 255, 255, 0.4);
}
#mainvisual .text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.75),
    0 0 10px rgba(255, 255, 255, 0.45);
}
#mainvisual .country .list {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  width: min(100%, 400px);
  margin-bottom: 50px;
}
#mainvisual .contact {
  display: flex;
  justify-content: space-between;
  width: min(100%, 420px);
  gap: 16px;
  align-items: stretch;
}
#mainvisual .contact .left {
  width: 60%;
}
#mainvisual .contact .right {
  width: 35%;
} 
#mainvisual .contact .left .line .text {
  background-color: var(--success-color);
  font-weight: normal;
  font-size: 1.05rem;
  padding: 10px 12px;
  color: var(--bg-white);
  display: block;
  white-space: nowrap;
  text-shadow: none;
}
#mainvisual .contact .left .tel {
  background-color: var(--accent-color);
  font-weight: normal;
  font-size: 1.05rem;
  padding: 11px 12px;
  color: var(--bg-white);
  white-space: nowrap;
  display: block;
}
#mainvisual .mainvisual-cast {
  position: absolute;
  right: max(12px, 2vw);
  bottom: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  gap: clamp(12px, 1.6vw, 24px);
}
#mainvisual .character {
  position: relative;
}
#mainvisual .character .img {
  width: clamp(340px, 34vw, 520px);
}
#mainvisual .character .img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.18));
}
#mainvisual .karateka {
  position: relative;
  margin-bottom: clamp(56px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#mainvisual .karateka .img {
  width: clamp(95px, 30vw, 220px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.95);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  margin-bottom: 10px;
}
#mainvisual .karateka .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
#mainvisual .karateka .text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0;
  text-shadow: none;
  line-height: 28px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 5px;
}

/* --------------------------------
nav-menu
-------------------------------- */
#nav-menu {
  margin-bottom: 20px;
}
#nav-menu .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 1.5%;
}
#nav-menu .flex .item {
  background-color: #fff;
  border-radius: 5px;
  width: 24%;
}
#nav-menu .flex .item .item-title {
  background-color: #ffff00;
  border-radius: 5px;
  text-align: center;
  font-size: 0.85rem;
  padding: 12px;
}
#nav-menu .flex .item .text-link {
  padding: 10px;
}

/* --------------------------------
reason
-------------------------------- */
#reason .flex {
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 3.5%;
  margin-bottom: 80px;
  counter-reset: item;
}
#reason .flex .item {
  position: relative;
  list-style: none;
  width: 29%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#reason .flex .item .img {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}
#reason .flex .item .img img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  display: block;
}
#reason .flex .item .img::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: var(--main-color);
  background: rgba(31, 58, 95, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}
#reason .flex .item .text {
  text-align: center;
  padding: 10px 0;
}

/* --------------------------------
service
-------------------------------- */
#service {
  padding-top: 50px;
  padding-bottom: 70px;
}
#service .wrapper-03 {
  padding: 0;
}
#service .title {
  padding-left: 8px;
  border-left: 5px solid var(--main-color);
  margin-bottom: 30px;
  font-size: 1.3rem;
}
#service .house .en {
  font-size: 1.5rem;
  line-height: 1;
}
#service .flex {
  justify-content: space-between;
}
#service .house .air.flex .desc,
#service .house .air.flex .flex {
  width: 50%;
}
#service .house .air.flex {
  gap: 0 2%;
  margin-bottom: 50px;
}
#service .house .air.flex .text-title {
  background-color: var(--sub-color);
  padding: 10px 0 10px 20px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
#service .house .air.flex .list.flex {
  flex-wrap: wrap;
  padding-left: 30px;
  width: 100%;
  font-size: 1.1rem;
}
#service .house .air.flex .list.flex dt {
  width: 60%;
  margin-bottom: 20px;
}
#service .house .air.flex .list.flex dd {
  width: 40%;
  margin-bottom: 20px;
}
#service .house .air.flex .flex.img-flex {
  gap: 0 2%;
}
#service .house .air.flex .flex .img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
#service .house .air .flex .img  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#service .list-2.flex {
  justify-content: space-between;
  gap: 0 2%; 
  text-align: center;
  margin-bottom: 50px;
}
#service .list-2.flex .text {
  background-color: var(--sub-color);
  padding: 10px;
  font-size: 1.2rem;
}
#service .list-2.flex .img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#service .list-2.flex .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#service .cleannig-price-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
#service .cleannig-price-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 120px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 2px;
}
#service .price-table {
  border-collapse: collapse;
  margin-bottom: 20px;
  width: 100%;
}
#service .price-table tr:nth-child(odd) {
  background-color: #f5f3f3;
}
#service .price-table th,
#service .price-table td {
  padding: 11px 40px 11px 30px; 
}
#service .price-table th {
  background-color: var(--sub-color);
}
#service .price-table .menu {
  width: 35%;
}
#service .price-table .price-1 {
  width: 32%;
}
#service .price-table .price-2 {
  text-align: center;
} 
#service .price-table .shop-menu {
  width: 50%;
}
#service .price-table .shop-price {
  width: 50%;
}
#service .caution {
  margin-bottom: 40px;
  padding-left: 30px;
}
#service .simulation {
  text-align: center;
  margin-bottom: 60px;
}  
#service .simulation .btn {
  background-color: var(--accent-color);
  padding: 13px 50px 13px 20px;
  color: var(--bg-white);
  position: relative; 
  border: 1px solid var(--accent-color);
}
#service .simulation .btn::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--bg-white);
  border-right: 1px solid var(--bg-white);
  position: absolute;
  top: 20px;
  right: 26px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#service .simulation .btn:hover {
  background-color: var(--bg-white);
  color: var(--accent-color);
}
#service .simulation .btn:hover::before {
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  right: 13px;
} 


/* --------------------------------
works
-------------------------------- */
#works .flex {
  justify-content: space-between;
  align-items: center;
  gap: 0 3%;
  margin-bottom: 40px;
}
#works .flex .arrow {
  font-size: 2rem;
  color: var(--accent-color);
}
#works .flex .img {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#works .flex .img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; 
  padding: 5px 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#works .flex .img.bef::before {
  content: 'Before';
  background-color: var(--text-sub) 
}
#works .flex .img.aft::before {
  content: 'After'; 
  background-color: var(--success-color);
}
#works .flex .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works .desc {
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
#works .desc .title {
  margin-bottom: 30px;
  position: relative;
}
#works .desc .title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 2px;
}
#works .desc .customer {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* --------------------------------
message
-------------------------------- */
#message {
  padding-top: 60px;
}
#message .flex {
  justify-content: space-between;
  align-items: center;
}
#message .flex .img {
  width: 55%;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#message .flex .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;

}
#message .flex .message {
  width: 43%;
}
#message .flex .title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* --------------------------------
pikapika
-------------------------------- */
#pikapika {
  padding-bottom: 60px;
}
#pikapika .flex {
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
#pikapika .flex .img {
  width: 50%;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#pikapika .flex .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
#pikapika .flex .message {
  width: 43%;
}
#pikapika .flex .title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
#pikapika .flex .text {
  margin-bottom: 40px;
}

/* --------------------------------
flow
-------------------------------- */
#flow .flex {
  gap: 0 1%;
  counter-reset: item;
}
#flow .flex .arrow {
  color: var(--accent-color);
  margin-top: 7%;
}
#flow .flex .item.shadow {
  width: 22%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#flow .flex .item .img {
  margin-bottom: 10px;
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#flow .flex .item .img::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--main-color);
  background: rgba(31, 58, 95, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}
#flow .flex .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#flow .flex .item .title {
  text-align: center;
  margin-bottom: 10px;
} 
#flow .flex .item .text {
  font-size: 1rem;
  line-height: 25px;
  padding: 0 15px 10px 15px;
}

/* --------------------------------
faq
-------------------------------- */
#faq .faq-list {
  display: grid;
  grid-template-columns: 7% 90%;
  column-gap: 3%;
}
#faq .faq-list dt,
#faq .faq-list dd {
  margin: 0 0 20px 0;
}

#faq .faq-list .square-q,
#faq .faq-list .square-a {
  border-radius: 3px;
  padding: 3px 8px;
  border: 1px solid var(--success-color);
}
#faq .faq-list .square-q {
  background-color: var(--success-color);
  color: var(--bg-white);
  
}
#faq .faq-list .square-a {
  background-color: var(--bg-white);
  color: var(--success-color);
}

/* --------------------------------
aboutus
-------------------------------- */
#aboutus .flex {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
#aboutus .flex .img,
#aboutus .flex .desc {
  width: 45%;
}
#aboutus .flex .img .inner-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
#aboutus .flex .img .inner-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
#aboutus .flex .desc .text {
  margin-bottom: 10px;
}
#aboutus .map {
  overflow: hidden;
  line-height: 0;
}
#aboutus .map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 300px;
}
#aboutus .flex .line {
  text-align: center;
  width: 100%;
}
#aboutus .flex .line img {
  width: 40%;
}
#aboutus .desc .cta {
  margin-top: 40px;
}
#aboutus .desc .cta.text {
  margin-bottom: 20px;
}
#aboutus .desc .cta .btn {
  background-color: var(--success-color);
  color: var(--bg-white);
  padding: 10px 12px;
}

/* --------------------------------
footer
-------------------------------- */
#footer {
  padding: 15px 0;
  background-color: var(--main-color);
  color: var(--bg-white);
  text-align: center;
}

/* --------------------------------
policy
-------------------------------- */
.sub-page {
  background: linear-gradient(180deg, #f7fbfe 0%, #ffffff 220px);
}
.sub-page-main {
  padding-top: 140px;
}
.page-hero {
  margin-bottom: 60px;
}
.page-hero .lead {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-sub);
}
.policy-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 48px 40px;
  margin-bottom: 32px;
}
.policy-card:last-child {
  margin-bottom: 0;
}
.policy-card .title {
  font-size: 1.5rem;
  color: var(--main-color);
  margin-bottom: 24px;
  padding-left: 10px;
  border-left: 5px solid var(--accent-color);
}
.policy-section {
  margin-bottom: 28px;
}
.policy-section:last-child {
  margin-bottom: 0;
}
.policy-section h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.policy-section p,
.policy-section li {
  color: var(--text-main);
  line-height: 2;
}
.policy-list {
  padding-left: 1.4em;
}
.policy-list li {
  list-style: disc;
  margin-bottom: 6px;
}
.policy-note {
  margin-top: 30px;
  padding: 18px 20px;
  background-color: var(--sub-color);
  border-left: 4px solid var(--main-color);
}
.policy-contact {
  margin-top: 20px;
}
.policy-contact a {
  color: var(--main-color);
  font-weight: 600;
}
.policy-footer-link {
  margin-top: 16px;
}
.policy-footer-link a {
  color: var(--bg-white);
}

/*-------------------------------------------
TB
-------------------------------------------*/
@media screen and (max-width: 1200px) {
  /* --------------------------------
  [TB]header
  -------------------------------- */
  #header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    height: calc(60px + var(--safe-top));
    padding-top: var(--safe-top);
    transform: translateY(0);
  }
  #header.is-fixed {
    position: fixed;
    height: calc(60px + var(--safe-top));
  }
  #header .inner {
    height: 100%;
  }
  #header .site-title {
    width: 250px;
  }
  #header .site-title .logo-img {
    max-width: 150px;
  }
  #nav.pc {
    display: none;
  }
  #nav-sp {
    display: block;
  }
  #header .hamburger {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 16px;
    right: 40px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 100;
  }
  #header .hamburger .icon-bar {
    width: 30px;
    height: 1px;
    border-radius: 4px;
    background-color: var(--main-color);
    position: absolute;
    left: 0px;
    transition: 0.5s;
    transition: all .7s cubic-bezier(.19,1,.22,1);
    transition-property: transform, opacity, background-color, width, top;
    transform-origin: right bottom; 
  }
  #header .hamburger span {
    background-color: var(--main-color);
  }
  #header .hamburger .icon-bar:nth-child(1) {
    top: 5px;
    transition-delay: 150ms;
  }
  #header .hamburger .icon-bar:nth-child(2) {
    top: 15px;
    transition-delay: .4s;
  }
  #header .hamburger .icon-bar:nth-child(3) {
    bottom: 5px;
    transition-delay: 0s;
  }
  body.nav-open .hamburger {
    position: fixed;
  }
  body.nav-open #header .hamburger .icon-bar:nth-child(1) {
    transform: translateX(-50%) rotate(315deg);
    top: 4px;
    left: 42%;
    width: 35px;
    background-color: var(--main-color);
  }
  body.nav-open #header .hamburger .icon-bar:nth-child(2) {
    transform: translateX(-60px); 
    opacity: 0;
    background-color: var(--main-color);
  }
  body.nav-open #header .hamburger .icon-bar:nth-child(3) {
    transform: translateX(-50%) rotate(-315deg);
    top: 30px;
    left: 42%;
    width: 35px;
    background-color: var(--main-color);
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open #menu-sp {
    right: 0;
    opacity: 1;
  }
  #menu-sp {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-light);
    padding: 70px 30px 0 30px;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.8s;
    transition: all 0.6s ease;
    text-align: center;
  }
  #menu-sp .img {
    margin-bottom: 30px;
  }
  #menu-sp .img img {
    width: 100px;
  }
  #menu-sp .menu .item {
    margin-bottom: 16px;
    font-size: 1rem;
  }
  #menu-sp .menu .item a {
    color: var(--main-color);
  }
  #menu-sp .menu .item.u-cottage {
    margin-bottom: 5px;
  }
  #menu-sp .menu .cottage.under-text {
    margin-bottom: 15px;
  }
  #menu-sp .menu .cottage {
    display: block;
    margin-bottom: 8px;
    margin-left: 25px;
    position: relative;
  }
  #mask {
    display: none;
  }
  .nav-open #mask {
    width: 100%;
    height: 100vh;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  
  /* --------------------------------
  [TB]mainvisual
  -------------------------------- */
  #mainvisual {
    height: 100vh;
  }
  #mainvisual .concept {
    top: 16%;
    left: 6%;
    width: min(50%, 520px);
  }
  #mainvisual .mainvisual-cast {
    right: 12px;
  }
  #mainvisual .character .img {
    width: clamp(280px, 30vw, 420px);
  }
  #mainvisual .karateka {
    margin-bottom: clamp(36px, 5vw, 80px);
  }
  #mainvisual .karateka .img {
    width: clamp(72px, 9vw, 120px);
  }
  #mainvisual .concept-title {
    font-size: 2.2rem;
  }
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
  .sec-title .en {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .flex,
  .flex.reverse {
    flex-direction: column;
  }
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  section {
    margin-bottom: 60px;
  }
  /* --------------------------------
  [SP]animation
  -------------------------------- */
  .reveal-left,
  .reveal-right {
    transform: translateY(24px); 
  }
  #reason .flex .item.reveal:nth-child(1) {
    transition-delay: 0s;
  }
  #reason .flex .item.reveal:nth-child(2) {
    transition-delay: 0s;
  }
  #reason .flex .item.reveal:nth-child(3) {
    transition-delay: 0s;
  }
  #reason .flex .item.reveal:nth-child(4) {
    transition-delay: 0s;
  }
  #reason .flex .item.reveal:nth-child(5) {
    transition-delay: 0s;
  }
  #service .house .air .flex .img.reveal:nth-child(1) {
    transition-delay: 0s;
  }
  #service .house .air .flex .img.reveal:nth-child(2) {
    transition-delay: 0s;
  }
  #service .list-2 .item.reveal:nth-child(1) {
    transition-delay: 0s;
  }
  #service .list-2 .item.reveal:nth-child(2) {
    transition-delay: 0s;
  }
  #service .list-2 .item.reveal:nth-child(3) {
    transition-delay: 0s;
  }
  #works .flex .bef.reveal {
    transition-delay: 0s;
  }
  #works .flex .aft.reveal {
    transition-delay: 0s;
  }
  #flow .flex .item.reveal:nth-child(1) {
    transition-delay: 0s;
  }
  #flow .flex .item.reveal:nth-child(3) {
    transition-delay: 0s;
  }
  #flow .flex .item.reveal:nth-child(5) {
    transition-delay: 0s;
  }
  #flow .flex .item.reveal:nth-child(7) {
    transition-delay: 0s;
  }

  /* --------------------------------
  [SP]header
  -------------------------------- */
  #header .site-title {
    font-size: 1.5rem;
    margin-left: 16px;
  }
  #header .wrapper {
    padding: 0 16px;
  }
  #header .hamburger {
    right: 20px;
  }

  /* --------------------------------
  [SP]スクロールダウン
  -------------------------------- */
  .scroll {
    right: 40px;
  }

  /* --------------------------------
  [SP]mainvisual
  -------------------------------- */
  #mainvisual .concept {
    top: 12%;
    left: 5%;
    width: 100%;
  }
  #mainvisual .mainvisual-cast {
    right: 0;
    bottom: 0;
    gap: 8px;
  }
  #mainvisual .character .img {
    width: clamp(150px, 55vw, 240px);
    opacity: 0.95;
  }
  #mainvisual .karateka {
    margin-bottom: 10px;
  }
  #mainvisual .karateka .img {
    width: clamp(58px, 28vw, 86px);
    border-width: 3px;
  }
  #mainvisual .concept-title {
    font-size: 1.7rem;
    line-height: 40px;
    right: 2%;
    left: 2%;
    margin-bottom: 20px;
  }
  #mainvisual .concept .country .list .item .img {
    padding: 1px;
  }
  #mainvisual .sub-copy {
    font-size: 1.1rem;
    line-height: 30px;
    margin-bottom: 15px;
  }
  #mainvisual .text {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  #mainvisual .country .list {
    width: min(100%, 240px);
    margin-bottom: 24px;
  }
  #mainvisual .contact {
    width: min(100%, 280px);
    gap: 10px;
  }
  #mainvisual .contact .left {
    width: 100%;
  } 
  #mainvisual .contact .right {
    display: none;
  }  
  #mainvisual .contact .left .line .text
  {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
  #mainvisual .contact .left .tel {
    font-size: 0.85rem;
    padding: 10px 10px;
  }
  #mainvisual .swiper-button-prev,
  #mainvisual .swiper-button-next  {
    display: none;
  }
#mainvisual .karateka .text {
  font-size: 0.7rem;
  line-height: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 5px;

}
  /* --------------------------------
  [SP]reason
  -------------------------------- */
  #reason .flex .item {
    margin-bottom: 20px;
    width: 100%;
  }
  #reason .flex .item .img {
    margin-bottom: 10px;
    height: 300px;
  }
  #reason .flex .item .text {
    text-align: center;
  }

  /* --------------------------------
  [SP]service
  -------------------------------- */
  #service {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #service .house .en {
    font-size: 1rem;
  }
  #service .house .air.flex .desc,
  #service .house .air.flex .flex {
    width: 100%;
  }
  #service .house .air.flex .text-title {
    padding: 10px;
    margin-bottom: 20px;
  }
  #service .house .air.flex .list.flex {
    padding-left: 5px;
    flex-direction: row;
    font-size: 1rem;
  }
  #service .house .air.flex .flex .img {
    width: 100%;
    height: 300px;
  }
  #service .house .air.flex .list.flex dt {
    width: 65%;
    margin-bottom: 15px;
  }
  #service .house .air.flex .list.flex dd {
    width: 35%;
    margin-bottom: 15px;
  }
  #service .house .air.flex .flex.img-flex {
    gap: 10px 0;
  }
  #service .list-2.flex .item {
    margin-bottom: 25px;
  }
  #service .list-2.flex .item .text {
    margin-bottom: 10px;
  }
  #service .price-table {
    font-size: 0.8rem;
  }
  #service .price-table .en {
    font-size: 0.8rem;
  }
  #service .price-table th,
  #service .price-table td {
    padding: 4px 2px 4px 5px; 
  }
  #service .caution {
    margin-bottom: 50px;
    font-size: 0.9rem;
    padding-left: 0;
  }
  #service .simulation .btn {
    padding: 10px 40px 10px 15px;
    font-size: 0.9rem;
  }
  #service .simulation .btn::before {
    width: 10px;
    height: 10px;
    top: 15px;
    right: 20px;
  }

  /* --------------------------------
  [SP]works
  -------------------------------- */
  #works .flex .arrow {
    transform: rotate(90deg);
  }
  #works .flex .img {
    height: 350px;
  }
  #works .desc {
    padding: 15px;
    font-size: 0.9em;
  }

  /* --------------------------------
  [SP]message
  -------------------------------- */
  #message .flex .img {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
    #message .flex .message {
    width: 100%;
  }
  #message .flex .message .title {
    text-align: center;
  }

  /* --------------------------------
  [SP]pikapika
  -------------------------------- */
  #pikapika .flex {
    flex-direction: column;
  }
  #pikapika .flex .img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }
  #pikapika .flex .message {
    width: 100%;
  }
  #pikapika .flex .message .title {
    text-align: center;
  }
  #pikapika .flex .message .link {
    text-align: center;
  }

  /* --------------------------------
  [SP]flow
  -------------------------------- */
  #flow .flex {
    align-items: center;
  }
  #flow .flex .arrow {
    transform: rotate(90deg);
    margin-bottom: 20px;
  }
  #flow .flex .item.shadow {
    width: 100%;
  }
  #flow .flex .item .img  {
    height: 300px;
  }

  /* --------------------------------
  [SP]faq
  -------------------------------- */
  #faq .faq-list {
    grid-template-columns: 10% 85%;
    column-gap: 5%;
  }

  /* --------------------------------
  [SP]aboutus
  -------------------------------- */
  #aboutus .flex .img,
  #aboutus .flex .desc {
    width: 100%;
  }
  #aboutus .flex .img .inner-img {
    height: 300px;
    margin-bottom: 10px;
  }
  #aboutus .flex .img .inner-img.logo {
    height: 200px;
  } 
  #aboutus .flex .img {
    margin-bottom: 15px;
  }
  #aboutus .flex .img .inner-img img {
    object-position: top center;
  }

  /* --------------------------------
  [SP]footer
  -------------------------------- */
  #footer .flex {
    flex-direction: column;
    gap: 40px 0;
  }
  #footer .flex .contact, 
  #footer .flex .info {
    width: 100%;
  }

  /* --------------------------------
  [SP]policy
  -------------------------------- */
  .sub-page-main {
    padding-top: 110px;
  }
  .page-hero {
    margin-bottom: 40px;
  }
  .policy-card {
    padding: 28px 18px;
  }
  .policy-card .title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .policy-section h3 {
    font-size: 1rem;
  }
}
