@charset "utf-8";

:root {
    --primary-green-color: #249d96;
    --primary-yellow-green-color: #87c04d;
	--primary-orange-color: #f49b59;
    --primary-blue-color: #6283e1; 
    --primary-red-color: #f00000; 
    --primary-pink-color: #eb888a;
    --primary-gray-color: #9c9c9c;
	--primary-bkgray-color: #fdfbf3;
    --primary-bkgreen-color: #e6eeec;
    --primary-bkbeige-color: #fdfaf0;
    --primary-border-gray-color: #c1beb6;
	--primary-gray-color:#b7b5b5;
}

body{
    background:#fff7e0;
}

.wrapper{
    width: 90%;
	max-width: 1100px;
	margin:0 auto;	
}

.wrapper700{
    width: 90%;
	max-width: 700px;
	margin:0 auto;
}

.wrapper900{
    width: 90%;
	max-width: 900px;
	margin: 0 auto;
}



@media screen and (max-width: 768px) {
    
    .wrapper,
	.wrapper700,
	.wrapper900{
        width:90%;
    }

    /*.mainvisual .wrapper{
        width: 100%;
    }*/

}

/*index*/


/*========= 流れるテキスト ===============*/

.slide-in {
    overflow: hidden;
      display: inline-block;
  }
  
  .slide-in_inner {
    display: inline-block;
  }

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
    transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
}

    to {
    transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
    }
}

/*左右のアニメーション*/
.rightAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}



/*========= 流れるテキスト ここまで===============*/

.header{
    width: 100%;
    /*position: absolute;*/
    z-index: 2;
    height: 250px;
    position: -webkit-sticky;
	position: sticky;
	top: 0;
    z-index: 100;
    background-image: url('../img/bg-cloud-bottom.png');
    background-repeat: no-repeat;
    background-position: bottom center; /* 下端に固定 */
    background-size: 100% auto;/* 雲の波打ち画像 */
}

.anchor-adjustment{
    scroll-margin-top: 250px;
}

@media screen and (max-width: 1100px) {

.header{
        position: static;
        background-size: cover;
        height: 160px;
    }
    
    .anchor-adjustment{
        scroll-margin-top: 160px;
    }
}


.header-top {
  background-color: #fff; /* 必要に応じて薄いグレーや黄色に */
  font-size: 13px;
  padding: 5px 0;
  height: 50px;
}

@media screen and (max-width: 1100px) {
    
    .header-top{
        display: none;
    }
    
    .header-contact{
        text-align: center;
    }
}

.header-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-tel {
  color: var(--primary-green-color);
  font-size: 2.0rem;
  font-weight: 600;
}

.header-tel::before{
    content: "";
    background: url(../img/icon-tel.png);
    width: 14px;
    height: 18px;
    display: inline-block;
    margin-right:5px;
}

@media screen and (max-width: 1100px) {
    
    .header-contact .header-tel .tel-link a,
    .header-contact .header-tel .tel-link{
        color: var(--primary-green-color);
        font-size: 1.6rem;
        font-weight: 600;
    }
    
    .header-tel{
        font-size: 1.2rem;
    }
    
    .header-tel::before{
        width: 13px;
        height: 14px;
        margin-right: 2px;
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: -2px;
    }
    
}

.header-sub-nav {
  display: flex;
  list-style: none;
  gap: 15px;
}

.header-sub-nav a {
  text-decoration: none;
  font-weight: 600;
}

.header-sub-nav a::before{
    display: inline-block;
    content: "";
    background: url(../img/icon-star.png) center no-repeat;
    width: 19px;
    height: 17px;
    margin-right:5px;
    vertical-align: -3px;
}



.header-section-wrapper{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    
    .header-section-wrapper{
        justify-content: center;
    }
}

.header-main {
  display: flex;
  justify-content: center; /* 中央に寄せる */
  align-items: flex-start;
}

.header-logo {
  margin: -40px 40px 50px;
  /*width: 220px; */  /* ロゴのサイズに合わせて調整 */
}

@media screen and (max-width: 1100px) {
    
    .header-logo {
        width: 200px;
        margin: 10px auto 0;
    }
}

.header-nav {
  flex: 1; /* 左右に均等な幅を持たせる */
}

.header-nav--left ul {
  justify-content: flex-end; /* ロゴに寄せる */
}

.header-nav--right{
    margin-right: 0;
    margin-left: auto;
}

.header-nav--right ul {
  justify-content: flex-start; /* ロゴに寄せる */
}

.header-nav ul {
  display: flex;
  list-style: none;
  /*gap: 40px;*/
}



/* --- ナビの文字とアイコン --- */
.header-nav ul li a {
  display: flex;
  flex-direction: column; /* アイコンを上に配置 */
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav-icon {
  width: 40px; /* アイコンのサイズ */
  height: auto;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.header-nav ul li a:hover .nav-icon {
    transform: scale(1.2);
}

/* --- 雲の装飾（もし画像があれば） --- */
.header-bottom-deco {
  width: 100%;
  height: 20px;
  background-image: url('../img/bg-cloud-bottom.png'); /* 雲の波打ち画像 */
  background-repeat: repeat-x;
  background-position: bottom;
}






.header-logo-wrapper{
    margin-top: 10px;
}

.header-nav{
    display: flex;
    align-items: center;
}

.header-nav ul{
    display: flex;
    align-items: flex-start;
}

.header-nav ul li{
    width: 170px;
    display: flex;        /* これを追加：線と中身を横に並べる */
    align-items: center;
}

.header-nav ul li:before{
    content: "";
    width: 3px;
    height: 93px;
    background: url(../img/header-dotted-border.png) no-repeat center;
    background-size: contain;
    flex-shrink: 0; 
    display: block;
}

.header-nav--right ul li:last-child:after,
.header-nav--left ul li:last-child:after{
    content: "";
    width: 3px;
    height: 93px;
    background: url(../img/header-dotted-border.png) no-repeat center;
    background-size: contain;
    display: block;
    flex-shrink: 0;
}

.header-nav ul li a{
    /*position: relative;*/
    flex-grow: 1;         /* 残りの幅をすべて使う */
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-decoration: none;
}

.header-nav ul li a:hover{
    opacity: 1 !important;
}


.header-nav ul li a:hover::before,
.header-nav ul li a.active::before{
    position: absolute;
    content: '';
    top: -22px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 21px;/*幅*/
    height: 21px;/*どれだけデカくなってもはみ出ないであろう高さを指定*/
    background-image: url(../img/icon-sakura.png);
    background-size: contain;
    background-repeat: no-repeat;/*画像を繰り返さない*/
}

a.btn-contact {
    padding: 40px 0;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 1.4rem;
    width: 120px;
    height: 80px;
    position: relative;
}

a.btn-contact::before {
    content: "";
    width: 25px;
    height: 20px;
    background: url(../img/icon-envelope.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

a.btn-large-contact {
    padding: 10px 28px;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    font-size: 1.8rem;
    font-weight: bold;
}

a.btn-large-contact::before {
    content: "";
    width: 23px;
    height: 18px;
    background: url(../img/icon-envelope.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
}

@media screen and (max-width: 1100px) {

    .header-nav{display: none;}
}

@media screen and (max-width: 768px) {

    .header-logo-wrapper{
        margin-top: 0;
    }


    a.btn-large-contact {
        width: 225px;
        padding: 5px;
        margin: 0 auto;
    }

}

a.btn--orange {
    color: #fff;
    background-color: #ea5413;
    }

a.btn--pink {
    color: #fff;
    background-color: #ff83b2;
}


.header-telno{
    font-size: 2.0rem;
    color: #fff;
    text-shadow:1px 1px 0 #ff83b2, -1px -1px 0 #ff83b2,
                -1px 1px 0 #ff83b2, 1px -1px 0 #ff83b2,
                0px 1px 0 #ff83b2,  0 -1px 0 #ff83b2,
                -1px 0 0 #ff83b2, 1px 0 0 #ff83b2;
}


/*footer*/

/* --- 画面幅いっぱいに広がる背景（おうちと丘） --- */
.footer-outer {
  width: 100%;
  background-image: url('../img/footer-houses.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  padding-bottom: 120px;
}

/* --- フッター外枠（1100pxの基準） --- */
.footer-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative; /* 風船の配置基準点 */
  padding-top: 60px;
}

/* フッターの中身（中央寄せ） */
.footer-inner {
  text-align: center;
  position: relative;
  z-index: 10; /* 風船より手前に表示 */
}

/* 左右の風船装飾（共通） */
.footer-wrapper::before,
.footer-wrapper::after {
  content: "";
  position: absolute;
  top: 60px; /* 高さはデザインに合わせて調整 */
  width: 98px;
    height: 244px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;    /* テキストの後ろ */
}

/* --- PC版：1100px枠から50px内側に配置 --- */
@media (min-width: 769px) {
  /* 左の風船 */
  .footer-wrapper::before {
    left: 50px; /* 1100pxの左端から50px内側 */
    background-image: url('../img/footer-balloon-left.png');
  }

  /* 右の風船 */
  .footer-wrapper::after {
    right: 50px; /* 1100pxの右端から50px内側 */
    background-image: url('../img/footer-balloon-right.png');
  }
}

/* --- SP版：画面端に寄せる --- */
@media (max-width: 768px) {
  .footer-wrapper {
    overflow: hidden; /* 風船のはみ出しをカット */
  }

  .footer-wrapper::before {
    left: 0px; /* スマホでは端に寄せる */
    background-image: url('../img/footer-balloon-left.png');
    width: 50px;
    height: 120px;
  }

  .footer-wrapper::after {
    right: 0px; /* スマホでは端に寄せる */
    background-image: url('../img/footer-balloon-right.png');
    width: 50px;
    height: 120px;
  }
  
  .footer-outer {
    padding-bottom: 80px;
    background-size: 200%;
  }
}

/* --- テキスト装飾 --- */
.footer-info {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #4a4a4a;
}

.footer-corp{
    font-size: 1.8rem;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.footer-name {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
  font-family: "RocknRoll One", sans-serif;
    font-style: normal;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.footer-nav li {
  margin: 5px 15px;
}

.footer-nav a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 15px;
}

.copyright {
  font-size: 1.4rem;
  color: #4a4a4a;
}


@media (max-width: 768px) {
    .footer-nav{
        display: none;
    }
    
    .footer-corp{
        font-size: 1.4rem;
    }

    .footer-name {
        font-size: 2.8rem;
    }
    
    .footer-address,
    .footer-tel{
        font-size: 1.2rem;
    }
    
    .copyright {
        font-size: 1.0rem;
    }
    
}




.footer{
    /*background: #0864b2;*/
    padding:20px 0 30px;
}

.footer .wrapper{
    display: flex;
    justify-content: center;
    position:relaitve;
}

.footer-list{
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.footer-list::before{
    width: 23px;
    height: 35px;
    background: url(../img/icon-company-logo.png);
    background-repeat: no-repeat;
    display: inline-block;
    /*margin-right: 5px;*/
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.footer-list li{
    margin-right: 25px;
}

.footer-list li a{
    font-size: 1.4rem;
}

.copy{
    display: flex;
    justify-content: center;
}

.copy small{
    font-size: 1.0rem;
}

.pagetop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    opacity: .8;
}

.textbox {
    position: fixed;
    top: 100px;
    right: 0%;
}
.vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: #fff;
    padding: 15px 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.vertical__yellow{
    border-top: 5px solid #ffda04;
    border-left: 5px solid #ffda04;
    border-bottom: 5px solid #ffda04;

}

.vertical__orange{
    border-top: 5px solid #ea5413;
    border-left: 5px solid #ea5413;
    border-bottom: 5px solid #ea5413;

}

.vertical__green{
    border-top: 5px solid #54b65b;
    border-left: 5px solid #54b65b;
    border-bottom: 5px solid #54b65b;

}

.vertical__part {
    text-orientation: upright;
}

.vertical_icon{
    width: 20px;
    margin-bottom: 10px;
}



/* --- メインビジュアル全体の枠 --- */
.top-main-visual {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  /* PC版の比率 */
  aspect-ratio: 1000 / 650;
  background-color: #fef9e7;
  margin-bottom: 60px;
}

/* スライダーを包む枠 */
.mv-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* slickの高さ問題を強制解決：親の比率(aspect-ratio)に絶対に従わせる */
.slick-slider, 
.slick-list, 
.slick-track, 
.slick-slide, 
.slick-slide > div {
  height: 100% !important;
}

.slick-slide img {
  width: 100%;
  height: 100% !important;
  /* 画像を歪ませず、枠に合わせて中央で切り抜く（縦伸び防止の肝） */
  object-fit: cover !important;
  object-position: center;
}

/* --- 穴あきフレーム（マスク） --- */
.mv-hole-frame {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: url(../img/mainvisual-mask.png) no-repeat center;
  background-size: 100% 100% !important; /* 親の枠にピッタリ合わせる */
  pointer-events: none;
}



/* --- 各パーツの配置 --- */
.mv-copy {
  position: absolute;
  bottom: 10%; 
  left: 0;
  z-index: 12;
  font-weight: bold;
}

.mv-copy img {
  text-shadow: 
    0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff,
    0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
}

.btn-recruit {
  position: absolute;
  top: 0; 
  right: 0;
  z-index: 10;
  width: auto;
}

.deco-sun {
  position: absolute;
  top: 2%; 
  left: 2%;
  z-index: 10;
  width: auto;
}

.deco-animals {
  position: absolute;
  bottom: 0; 
  right: 0;
  z-index: 10;
  width: auto;
}

/* --- 矢印（スライダーナビ） --- */
.mv-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 20;
  pointer-events: none;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv-arrows button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background: none;
  text-indent: -9999px;
}

/*.slick-prev, .slick-next {
    position: relative;
    overflow: visible !important;
    text-indent: -9999px;
    color: transparent;
    border: none;
    background: none;
}

.slick-prev::after {
    content: "";
    position: absolute;
    bottom: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 83px;
    background: url("../img/btn-prev.png") no-repeat center/contain;
    display: block;
}

.slick-next::after {
    content: "";
    position: absolute;
    bottom: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 83px;
    background: url("../img/btn-next.png") no-repeat center/contain;
    display: block;
}*/

.slick-prev { left: -60px; } /* 枠の外側左 */
  .slick-next { right: -60px; } /* 枠の外側右 */

  .slick-prev::after, .slick-next::after {
    content: "";
    display: block;
    width: 80px;
    height: 83px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .slick-prev::after { background-image: url("../img/btn-prev.png"); }
  .slick-next::after { background-image: url("../img/btn-next.png"); }

@media (min-width: 1101px) {
  .sp__my-copy{
    display: none;
  }
}
  
@media (max-width: 1100px) {
    
    .pc__my-copy{
        display: none;
  }
    
  .top-main-visual { 
    aspect-ratio: 1 / 0.6 !important;
    height: auto !important;
    width: 95%;
    overflow: visible;
    margin-top: 30px;
    margin-bottom: 80px;
  }
  
  /* 写真がはみ出さないように改めて固定 */
  .slick-slide img {
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .mv-arrows {
    top: 40%;
  }
  
  .mv-arrows button {
    padding: 0;
  }

  .btn-recruit {
    width: 25%;
    right: 5%;
    min-width: 120px;
    top: -30px;
  }

  .mv-copy {
    width: 90%;
    left: 0;
    max-width: 180px;
    bottom: -50px;
}
 
  
  .mv-copy img {
    width: 100%;
    height: auto;
  }

  .deco-sun {
    width: 20%;
    min-width: 150px;
    top: -30px;
  }
  
  .deco-animals {
    width: 45%;
    min-width: 180px;
    bottom: -50px;
  }

  .slick-prev::after, .slick-next::after {
    width: 40px;
    height: 42px;
    z-index: 30;
    bottom: 0 !important;    /* 浮かせていたのを中央付近へ戻す */
    /*transform: translate(-50%, -50%);*/
  }
  
  /* 左右の間隔：内側に寄せる */
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
}



.top-news-banner {
  display: flex;
  align-items: center;
  background-color: #e86a6a; /* 左側の赤い色 */
  border: 2px solid #e86a6a; /* 枠線 */
  border-radius: 50px;      /* 全体をカプセル型に */
  max-width: 1100px;         /* 横幅はお好みで */
  margin: 20px auto;
  overflow: hidden;         /* はみ出し防止 */
}

@media (max-width: 1100px) {
    
    .top-news-banner {
        width: 95%;
    }
}

/* 「重要なお知らせ」の文字部分 */
.news-label {
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;      /* 改行させない */
}

/* 白い背景のニュース内容部分 */
.news-body {
  /*display: flex;*/
  flex-grow: 1;             /* 残りの幅を全部使う */
  background-color: #fff;   /* 右側の白い色 */
  padding: 10px 30px 10px 40px;
  border-radius: 0 45px 45px 0; /* 右側だけ丸める */
  color: #333;
  font-size: 1.6rem;
}

/*.news-item {
  display: flex;
  align-items: baseline; 
}*/

.news-item:last-of-type{
    margin-bottom: 0;
}

/* 日付 */
.news-date {
  margin-right: 20px;
  letter-spacing: 0.05em;
}

/* テキスト（スマホで長くなってもOKなように） */
.news-text {
   color: #333; 
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.news-text:hover {
  color: #e86a6a;             /* 赤色に変化させる */
}

@media (max-width: 1100px) {
    .news-label {
        padding: 10px 5px 10px 15px;
        white-space: wrap;
        font-size: 1.0rem;
    }
    
    .news-body {
        padding: 10px 15px;
        border-radius: 0 18px 18px 0;
        /*flex-wrap: wrap;
        padding: 10px;*/
    }
    
    .news-item {
        display: flex;
        flex-direction: column; 
        margin-bottom: 10px; 
    }
    
    .news-item:last-of-type{
        margin-bottom: 0;
    }
    .news-date {
        width: 100%;
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    .news-text {
        width: 100%;
        font-size: 1.2rem;
    }
    
}

 




.top-menu-section {
  margin: 120px auto 0;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
    .top-menu-section{
        margin-top: 20px;
        padding-top: 50px;
    }
    
}

/* ★ 音符：ボタンのコンテナと同じ階層に置く ★ */
.bg-music-score {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px; /* ここでお好みの幅に制限 */
  height: 400px;
  background: url("../img/top-button-music-score.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 2; /* 背景(1)より上で、ボタン(10)より下 */
}

@media (max-width: 768px) {
    .bg-music-score {
        top: 5%;
        width: 90%;
    }
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10; 
  
}

@media (max-width: 1100px) {
    
    .menu-container {
        column-gap: 15px;
        row-gap: 70px;
    }
}

@media (max-width: 520px) {
    .menu-container {
        row-gap: 15px;
    }
}

.menu-item {
  position: relative;
  flex-shrink: 0;
}

.item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* 内部の重なり順 */
.photo-container {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88%; height: 88%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.zoom-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.item-link:hover .zoom-img {
  transform: scale(1.15);
}

.frame-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fukidashi-img {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

/* 個別サイズ調整（ここがズレると丸が歪みます） */
.item-1 { width: 240px; height: 240px; margin-top: 50px; }
.item-1 .fukidashi-img { width: auto; top: -10px; left: -10px; }

.item-2 { width: 300px; height: 300px; margin-top: -50px; }
.item-2 .fukidashi-img { width: auto; bottom: -20px; left: 10px; }

.item-3 { width: 240px; height: 240px; margin-top: 80px; }
.item-3 .fukidashi-img { width: auto; top: -55px; left: 40px; }

.item-4 { width: 260px; height: 260px; margin-top: -50px; }
.item-4 .fukidashi-img { width: auto; bottom: -10px; left: 0; }


@media (max-width: 1100px) {
    .item-1 {width: 150px; height: 150px;}
    .item-1 .fukidashi-img { width: 100px;}
    .item-2 { width: 180px; height: 180px;}
    .item-2 .fukidashi-img { width: 100px;}
    .item-3 {width: 150px; height: 150px; margin-top: 50px;}
    .item-3 .fukidashi-img { width: 130px; top: -30px; left: 30px;}
    .item-4 { width: 160px; height: 160px; margin-top: -70px;}
    .item-4 .fukidashi-img { width: 100px;}
}

.button-yellow-green-arrow{
    background: var(--primary-yellow-green-color);
    border-radius: 50px;
    height:50px;
    line-height: 48px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color:#fff;
}

.button-yellow-green-arrow__w300{
    width: 300px;
}

.button-yellow-green-arrow:before{
    content: '';
    display: inline-block;
    width: 9px;
    height: 14px;
    background-image: url(../img/icon-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    vertical-align: -0px;
}

@media screen and (max-width: 768px) {
    .button-yellow-green-arrow{
        height: 40px;
        line-height: 40px;
        font-size: 1.4rem;
        font-weight: 400;
    }
    
    .button-yellow-green-arrow__w300{
        width: 200px;
    }
    
    .button-yellow-green-arrow:before{
        width: 8px;
        height: 10px;
        margin-right: 10px;
    }
}


.section-top-news{
    background: #fff;
    padding: 60px 0;
    position: relative;
}

/* --- 全体共通 --- */
.news-title-wrapper {
  max-width: 1100px; /* ガイドラインの幅 */
  width: 100%;
  margin: 0 auto;
  position: relative; /* 旗をこの枠の端(0)に配置する基準 */
  padding: 40px 0;
}

/* リボン画像を中央に配置する枠 */
.news-title-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px; /* 画像の高さに合わせて調整してください */
}

/* タイトルリボン（旗より手前に表示） */
.news-title-image {
  position: relative;
  z-index: 10; /* 旗(z-index: 1)よりも大きな数値で手前に */
}

.news-title-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 左右の旗（共通スタイル） */
.news-title-wrapper::before,
.news-title-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 342px;  /* 旗画像の横幅 */
  height: 118px; /* 旗画像の縦幅 */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;    /* リボンの後ろに配置 */
}

/* --- PC版 (769px以上) --- */
@media (min-width: 769px) {
    
  .news-title-wrapper::before {
    left: 0; /* 1200px幅の左端ぴったり */
    background-image: url('../img/oshirase-decor-left.png');
    transform: translateY(-50%);
  }

  .news-title-wrapper::after {
    right: 0; /* 1200px幅の右端ぴったり */
    background-image: url('../img/oshirase-decor-right.png');
    transform: translateY(-50%);
  }
}

/* --- SP版 (768px以下) --- */
@media (max-width: 768px) {
  /* スマホ時は枠からはみ出るのでカット */
  .news-title-wrapper {
    padding: 20px;
    overflow: visible;
  }

  .news-title-image img {
    width: 250px; /* スマホでのリボンサイズ */
  }

  .news-title-wrapper::before,
  .news-title-wrapper::after {
    width: 150px; /* スマホでの旗サイズ */
    height: 80px;
  }

  .news-title-wrapper::before {
    left: 0;
    background-image: url('../img/oshirase-decor-left.png');
    transform: translate(-50%, -50%); /* 左へ半分追い出す */
  }

  .news-title-wrapper::after {
    right: 0;
    background-image: url('../img/oshirase-decor-right.png');
    transform: translate(50%, -50%); /* 右へ半分追い出す */
  }
  
  .news-title-inner {
    height: auto;
  }
}

.news-list-wrapper{
    margin: 0 7%;
}



.top-news_title-wrap{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.top-news_title-wrap a{
    margin-right: 0;
    margin-left: auto;
}

@media screen and (max-width: 768px) {

    .section-top-news{
        padding: 30px 0 50px;
        overflow: hidden;
    }

    .top-news_title-wrap a{
        font-size: 1.2rem;
    }
    
    .news-list-wrapper{
        margin: 0;
    }
}

.news-list{
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;
    height: 60px;*/
    padding: 10px 0;
}

.news-list dt{
    width: 240px;
}

.news-list dd{
    width: calc(100% - 240px);
    margin-top: -2px;
}

.news-list__time {
    font-size: 1.6rem;
    font-weight: 600;
}

.news-list__category {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-left: 20px;
    padding: 3px 5px;
    border-radius: 27px;
    vertical-align: middle;
    width: 115px;
    height: 27px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
}

.news-list__category-blue {
    background: #0864b2;  
}

.news-list__category-pink{
    background: var(--primary-pink-color);
}

.news-list__category-yellow {
    background: #ffc704;  
}

.news-list__category-green {
    background: #54b65b;
}

.news-list__category-orange {
    background: #ea5413;
}


.news-list dd a{
    font-size: 1.6rem;
}



@media screen and (max-width: 768px) {

    .news-list{
        /*display: block;*/
        padding: 10px 0;
    }

    .news-list dt{
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }

    .news-list dd{
        width: 100%;
    }

    .news-list__time {
        font-size: 1.2rem;
    }

    .news-list__category{
        font-size: 1.0rem;
        margin-left: 10px;
        width: 75px;
        height: 20px;
        line-height: 20px;
        padding: 0;
    }

    .news-list dd a{
        font-size: 1.4rem;
    }

}

/* --- 装飾うさぎの配置（セクション基準） --- */
.news-rabbit-decoration {
  position: absolute;
  /* セクションの右下からの距離 */
  right: 20%;   /* 画面の端から少し内側に配置 */
  bottom: 0; /* セクションの下端から少し上に配置 */
  width: 120px; /* デザインに合わせてサイズ調整 */
  height: auto;
  z-index: 1;   /* コンテンツの邪魔をしないように */
  pointer-events: none;
}

/* --- SP版：うさぎの微調整 --- */
@media (max-width: 768px) {
  .news-rabbit-decoration {
    width: 80px;
    right: 2%;
  }
}






/*top-mainvisual*/
.top-mainvisual{
    height:450px;
    background-image: url(../img/mainvisual-top-bk.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 120px;
}

.top-mainvisual__text{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;

}
.top-mainvisual__text h2,
.top-mainvisual__text h2 span{
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 3.3rem;
    line-height: 2;
}

/*.top-mainvisual__img-sakura{
    margin-bottom: 40px;
}*/



@media screen and (max-width: 768px) {

    

    

    a.btn-contact{
        max-width: 120px;
        padding: 2px 5px 2px 7px;
        font-size: 1.4rem;
    }

    a.btn-contact::before {
        width: 14px;
        height: 11px;
        background-size: contain;
    }

    

    .header-telno{
        font-size: 1.6rem;
    }

    .top-mainvisual{
        height: 150px;
        padding-top: 40px;
    }

    .top-mainvisual__text h2,
    .top-mainvisual__text h2 span{
        font-size: 1.6rem;
    }

    .top-mainvisual__text{
        margin-bottom: 10px;
    }

    

    .footer{
        padding: 25px 0;
    }

    .footer-list{
        display: none;
    }

    .pagetop {
        right: 20px;
    }

    .pagetop img{
        width: 40px;
        height: auto;
    }

}


.section-top-introduction{
    padding: 40px 0 70px;
}

@media screen and (max-width: 768px) {
    .section-top-introduction{
        padding: 20px 0 35px;
    }

    .section-top-introduction h3 img{
        width: 120px;
        height: auto;
    }
}

.illust-side{
    position: relative;
}

.illust-side:before{
    content: '';/*何も入れない*/
    width: 227px;/*画像の幅*/
    height: 310px;/*画像の高さ*/
    background-image: url(../img/illust01.png);
    background-size: contain;
    vertical-align: middle;
    position:absolute;
    left: 0%;
    /*left: 50%;
    margin-left: -380px;*/
}

.illust-side:after{
    content: '';/*何も入れない*/
    width: 241px;/*画像の幅*/
    height: 331px;/*画像の高さ*/
    background-image: url(../img/illust02.png);
    background-size: contain;
    vertical-align: middle;
    position:absolute;
    top: -50px;
    right: 0;
    /*left: 50%;
    margin-left: 250px;*/
}

@media screen and (max-width: 768px) {
    .illust-side p{
        font-size: 1.4rem;
    }

    .illust-side:before {
        display: none;
        /*width: 40px;
        height: 35px;
        margin-left: -155px;
        background-repeat: no-repeat;*/
    }

    .illust-side:after {
        display: none;
        /*background-repeat: no-repeat;
        width: 40px;
        height: 45px;
        margin-left: 115px;*/
    }
}

.category-circle-link{
    display: flex;
    justify-content: space-around;
}

.category-circle-link__item{
    background: #fff;
    width: 250px;
    height: 250px;
    border-radius: 100%;
}

.category-circle-link__item.circle-w200{
    width: 200px;
    height: 200px;
}

.category-circle-link__item a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 768px) {

    .category-circle-link{
        flex-wrap: wrap;
    }
    .category-circle-link__item,
    .category-circle-link__item.circle-w200 {
        background: #fff;
        width: 105px;
        height: 105px;
        border-radius: 100%;
    }
}

.item__yellow{
    border: 10px solid #ffda04;
}

.item__orange{
    border: 10px solid #ea5413;
}

.item__green{
    border: 10px solid #54b65b;
}

@media screen and (max-width: 768px) {

    .item__yellow{
        border: 5px solid #ffda04;
    }
    
    .item__orange{
        border: 5px solid #ea5413;
    }
    
    .item__green{
        border: 5px solid #54b65b;
    }

}

.section-top__new-property-listings{
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .section-top__new-property-listings{
        padding: 30px 0;
    }
}

.property-listings-wrapper{
    display: flex;
    flex-wrap: wrap;
}

.property-listings-item{
    width: calc(33.3333% - 40px/3);
    margin-right: 20px;
    margin-bottom: 40px;
}

.property-listings-item:nth-child(3n){
    margin-right:0;

}

@media screen and (max-width: 768px) {
    .property-listings-item{
        width: calc(50% - 20px/2);
        margin-bottom: 20px;
    }

    .property-listings-item:nth-child(3n){
        margin-right: 20px;
    }

    .property-listings-item:nth-child(2n){
        margin-right: 0;
    }
}


.property-listings-item a{
    width: 100%;
    height: 100%;
}

.property-listings-item a > div{
    margin-bottom: 20px;
    position: relative;
}

.property-listings_category{
    display: inline-block;
    padding: 2px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #ea5413;
    color: #ea5413;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.property-listings-item a > div > img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.property-listings_title{
    font-size: 1.8rem;
    color: #ea5413;
    font-weight: 600;
    margin-bottom: 5px;
}

.property-listings_address{
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #000;
}

.property-listings_address:before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 16px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    background-image: url(../img/icon-map_green.png);
    background-size: contain;
    vertical-align: sub;
    margin-right: 5px;
}

.property-listings_price{
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
}

.property-price-number{
    font-size: 2.2rem;
    color: #ea5413;
    font-weight: 600;
    margin-left: 10px;
}

.property-price-unit{
    font-size: 1.8rem;
    color: #ea5413;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .property-listings-item a > div {
        margin-bottom: 10px;
    }
    
    .property-listings_category {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .property-listings_title {
        font-size: 1.4rem;
    }
    
    .property-listings_address {
        font-size: 1.0rem;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    
    .property-listings_address:before {
        width: 8px;
        height: 10px;
        vertical-align: inherit;
        margin-right: 2px;
    }
    
    .property-listings_price {
        font-size: 1.0rem;
    }
    
    .property-price-number {
        font-size: 1.6rem;
    }
    
    .property-price-unit {
        font-size: 1.2rem;
    }

}






.section-banner-area{
    background: #ebebeb;
    height: 130px;
}

.section-banner-area-inner{
    height: 130px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section-banner-item{
    width: auto;
    height: auto;
    /*width: calc(20% - 60px/5);
    margin-right:15px;*/
}

/*.section-banner-item:nth-child(5n){
    margin-right:0;
}*/

.section-banner-item img{
    max-width: 100%;
    max-height: 110px;
    height: auto;
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {

    .section-banner-area{
        height: auto;
        padding-top: 20px;
    }

    .section-banner-area-inner{
        height: auto;
    }
    .section-banner-item{
        width: calc(50% - 15px/2);
        margin-bottom: 15px;
        text-align: center;
    }

    .section-banner-item:nth-child(2n){
        margin-right: 0;
    }

    .section-banner-item:nth-child(5n){
        margin-right: 15px;
    }
}

.section-company-name-address{
    background:#fceea6;
    height: 100px;
}

.section-company-name-address__inner{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-company-name-address__txt{
    font-size: 1.4rem;
}

.section-company-name-address__txt span{
    font-size: 1.8rem;
    font-weight: 500;
    margin-right: 40px;
}

@media screen and (max-width: 768px) {
    .section-company-name-address__txt{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: 1.0rem;
    }

    .section-company-name-address__txt span{
        margin: 0 auto;
        font-size: 1.2rem;
    }

}

/*
.section-top-products{
    padding: 60px 0;
    background: #fff;
}

@media screen and (max-width: 768px) {

    .section-top-products{
        padding: 30px 0;
    }
}*/

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

.section-top-products-link{
    position: relative;
}

.section-top-products-link-section1{
    height: 300px;
}

.zoom{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.zoom-1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    animation: animationZoom1 5s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
    .zoom,
    .zoom-1 img{
        height: 220px;
    }
}

@keyframes animationZoom1 {
    100% { transform:scale(1.1)} 
}


/*
.section-top-products-link-section2{
    position: absolute;
    top:40px;
    left: 50%;
    margin-left: -500px;
    width:1000px;
    height: 230px;
}



.top-products-link-item{
    display: block;
    width: 670px;
    height: 230px;
    background: rgba(255,255,255,.8);
    padding: 20px 30px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {

    .section-top-products-link-section2{
        top:20px;
        left: 50%;
        margin-left:-45%;
        width: 90%;
        height: auto;
    }

    .top-products-link-item{
        width: 100%;
        height: auto;
        padding: 15px;
    }
}

.top-products-link-item-wrap{
    display: flex;
}

.top-products-link-item_left {
    width: calc(100% - 220px);
}

@media screen and (max-width: 768px) {
    .top-products-link-item_left {
        width: 100%;
    }
}

.top-products-link-item_left .product-introduction{
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .top-products-link-item_left .product-introduction img{
        width: 50px;
        height: auto;
        margin-left: 10px;
    }
}

.top-products-link-item_left .product-name{
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 1.3;
}

.top-products-link-item_right{
    width: 220px;
}

@media screen and (max-width: 768px) {
    .top-products-link-item_right{
        display: none;
    }
    .top-products-link-item_left .product-name{
        font-size: 2.8rem;
    }
}

.top-products-link-item_right img{
    width: 100%;
    height: auto;
}

.product-introduction img{
    width: 98px;
    height: 26px;
    margin-left:20px;
    vertical-align: middle;
}
*/
.section-map iframe{
    width: 100% !important;
    height: 300px !important;
    vertical-align:middle;
    /*filter:grayscale(100%);
    -webkit-filter:grayscale(100%);*/
}

@media screen and (max-width: 768px) {

    .section-map iframe{
        height: 250px !important;
    }

}

.section-footer-logo-contact{
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .section-footer-logo-contact .wrapper660{
        max-width: 350px;
        width: 95%;
    }
}

.footer-logo-contact-wrap{
    display: flex;
    justify-content: space-between;
}

.footer-logo{
    display: flex;
    margin-bottom: 20px;
}

.footer-logo img{
    margin-right:10px;
    width: 51px;
    height: 54px;
}

.tel-contact-wrap{
    width: 300px;
}


@media screen and (max-width: 768px) {

    .section-footer-logo-contact{
        padding: 35px 0;
    }

    .footer-logo-contact-wrap{
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .footer-logo-wrap{
        margin-bottom: 20px;
    }

}

/*---------------main-contents----------------*/

.main-contents{
    padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
    .main-contents{
        padding-bottom: 70px;
    }
}

/*---------------breadcrumb----------------*/

.breadcrumb {
    height: 30px;
    background: #fceea6;
}

.breadcrumb span, .breadcrumb span a {
    font-size: 1.2rem;
    line-height: 30px;
    transform: rotate(0.03deg);
}

.breadcrumb span a:after {
    content: '/';
    padding: 0 5px;
}

.breadcrumb span > a > span {
    /*text-decoration: underline;*/
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        display: none;
    }
}




/*---------------mainvisual----------------*/

.mainvisual{
    padding-top: 35px;
    text-align: center;
    margin-bottom: 65px;
}

.mainvisual-inner{
    width: 100%;
    position: relative;
}

.mainvisual-deco-left{
    position: absolute;
    bottom: -65px;
    left:0;
}

.mainvisual-deco-right{
    position: absolute;
    right:0;
    bottom: -65px;
}

.mainvisual-title{
    font-size: 3.0rem;
    font-weight:700;
}

@media screen and (max-width: 768px) {

    .mainvisual{
        padding-top: 23px;
        margin-bottom: 30px;
    }
    .mainvisual-title{
        font-size: 1.8rem;
    }
    
    .mainvisual-deco-left{
        width: 20%;
        bottom: -30px;
        max-width: 100px;
    }
    
    .mainvisual-deco-right{
        width: 40%;
        bottom: -30px;
        max-width: 170px;
    }
}


/*----------page-title--------------*/

/* --- 全体共通 --- */
.page-title-wrapper {
  max-width: 1100px; /* ガイドラインの幅 */
  width: 100%;
  margin: 0 auto;
  position: relative; /* 旗をこの枠の端(0)に配置する基準 */
  padding: 0px 0;
}

/* リボン画像を中央に配置する枠 */
.page-title-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
 /* height: 150px; */
}

/* タイトルリボン（旗より手前に表示） */
.page-title-image {
  position: relative;
  z-index: 10; /* 旗(z-index: 1)よりも大きな数値で手前に */
}

.page-title-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 左右の旗（共通スタイル） */
.page-title-wrapper::before,
.page-title-wrapper::after {
  content: "";
  position: absolute;
  top: 30%;
  width: 292px; 
  height: 110px; 
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1; 
}

/* --- PC版 (769px以上) --- */
@media (min-width: 769px) {
    
  .page-title-wrapper::before {
    left: 0;
    background-image: url('../img/title-flag-left.png');
    /*transform: translateY(-50%);*/
  }

  .page-title-wrapper::after {
    right: 0; 
    background-image: url('../img/title-flag-right.png');
    /*transform: translateY(-50%);*/
  }
}

/* --- SP版 (768px以下) --- */
@media (max-width: 768px) {
  /* スマホ時は枠からはみ出るのでカット */
  .page-title-wrapper {
        padding: 20px 0 0;
        overflow: hidden;
  }

  .page-title-image img {
    width: 250px; /* スマホでのリボンサイズ */
  }

  .page-title-wrapper::before,
  .page-title-wrapper::after {
    width: 150px; /* スマホでの旗サイズ */
    height: 50px;
  }

  .page-title-wrapper::before {
    left: 0;
    top: 50%;
    background-image: url('../img/title-flag-left.png');
    transform: translate(-50%, -50%); /* 左へ半分追い出す */
  }

  .page-title-wrapper::after {
    right: 0;
    top: 50%;
    background-image: url('../img/title-flag-right.png');
    transform: translate(50%, -50%); /* 右へ半分追い出す */
  }
  
  .page-title-inner {
    height: auto;
  }
}

/*---------------wave-setction__white----------------*/

.wave-setction__white{
    position: relative;
    background: #fff;
    padding: 100px 0 70px;
}

.wave-setction__white::before{
    content: "";
    height: 30px;
    width: 100%;
    position:absolute;
    top:-30px;
    left:0;
    background-size: cover;
    background-position: top center;
    background-image: url(../img/wave-top__white.png);
}

.wave-setction__white::after{
    content: "";
    height: 30px;
    width: 100%;
    position:absolute;
    bottom:-30px;
    left:0;
    background-size: cover;
    background-position: bottom center;
    background-image: url(../img/wave-bottom__white.png);
}

.contents-inner{
    margin: 0 4.5%;
}

@media screen and (max-width: 768px) {
    
    .wave-setction__white{
        padding: 20px 0;
    }
    
    .contents-inner{
        margin: 0;
    }
}

/*---------------wave-setction__green-dotted----------------*/

.wave-setction__green-dotted{
   
    background: url(../img/bk-green-dotted.png);
    background-size: cover;
    padding: 100px 0;
    position: relative;
    
}

/*.wave-setction__green-dotted::before{
    content: "";
    height: 30px;
    width: 100%;
    position:absolute;
    top:-30px;
    left:0;
    background-size: cover;
    background-position: top center;
    background-image: url(../img/wave-green-dotted__top.png);
}*/

.wave-setction__green-dotted::after{
    content: "";
    height: 40px;
    width: 100%;
    position:absolute;
    bottom:-40px;
    left:0;
    background-size: cover;
    background-position: bottom center;
    background-image: url(../img/wave-green-dotted__bottom.png);
}

.contents-inner{
    margin: 0 4.5%;
}

@media screen and (max-width: 1480px) {

.wave-setction__green-dotted::after{
    display: none;
}
}

@media screen and (max-width: 768px) {
    
    .wave-setction__green-dotted{
        padding: 70px 0 100px;
    }
    
    .contents-inner{
        margin: 0;
    }
}



/*-----------------access-----------------*/


.section-accessmap {
    padding: 100px 0 70px;
}

@media screen and (max-width: 768px) {

    .section-accessmap {
        padding: 20px 0;
    }
}


.access-map iframe{
    width: 100% !important;
    height: 450px !important;
}

@media screen and (max-width: 768px) {
    .access-map iframe{
        height: 250px !important;
    }
}

@media screen and (max-width: 768px) {
    .tel-link > a {
        /*color: #06F;
        font-weight: bold;*/
        text-decoration: underline;
    }
    
    .tel-link.txtRed > a {
        color: #f00;
    }
}

.komoku-title__green{
    color: var(--primary-green-color);
    font-size: 2.0rem;
    font-weight: 600;
}

.komoku-title__green_fz18{
    color: var(--primary-green-color);
    font-size: 1.8rem;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .komoku-title__green,
    .komoku-title__green_fz18{
        font-size: 1.6rem;
    }
    
}

.icon-star::before{
    display: inline-block;
    content:"";
    width: 18px;
    height: 17px;
    background: url(../img/icon-star.png);
    margin-right:10px;
}

.komoku-list__w120 dt{
    width: 120px;
}

.komoku-list__w120 dd{
    width: calc(100% - 120px);
}

@media screen and (max-width: 768px) {
    
    .komoku-list__w120 dt,
    .komoku-list__w120 dd{
        width: 100%;
    }
    
}

.section-access-txt{
    padding-top: 70px;
}

.section-access-txt-item{
    width: 460px;
    margin: 0 auto;
    max-width: 90%;
}

.indent7{
    padding-left: 7em;
    text-indent:-7em;
}

@media screen and (max-width: 768px) {

    .section-access-txt{
        padding-top: 30px;
    }

    .indent7{
        padding-left: 0;
        text-indent: 0;
    }
}

/*-----------------complaint-----------------*/


.section-complaint {
    padding: 100px 0 70px;
}

@media screen and (max-width: 768px) {

    .section-complaint {
        padding: 20px 0;
    }
}

.item-w875{
    width: 100%;
    max-width: 875px;
    margin: 0 auto;
}

.dotted-list {
    border-bottom: 1px dotted #000;
    padding: 10px 0;
}

.dotted-list:first-of-type{
    border-top: 1px dotted #000;
}

.dt275-list dt{
    width: 275px;
    padding-left: 50px;
}

.dt275-list dd{
    width: calc(100% - 275px);
}

.section-complaint .dt275-list dd{
    font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
    .dt275-list dt,
    .dt275-list dd{
        width: 100%;
        padding-left:0;
    }
    
    .section-complaint .dt275-list dd{
        font-size: 1.4rem;
    }
    
}

.number-list {
  list-style: none;        /* デフォルトの数字を消す */
  counter-reset: my-list;  /* カウンターの名前を定義（リセット） */
  padding: 0;
  margin: 0;
}

.number-list > li {
    text-indent: -2rem;
    padding-left: 2.0rem;
    line-height: 2;
    font-size: 1.8rem;
}

.number-list > li:last-of-type{
   margin-bottom:0;
}

.number-list > li::before {
  counter-increment: my-list;        /* 番号を1ずつ増やす */
  content: counter(my-list) ". ";   /* 数字とドットを表示 */
  
  /* 数字部分の見た目の調整 */
  flex-shrink: 0;         /* 数字が潰れないように固定 */
  width: 1.5em;           /* 数字エリアの幅（2桁になる場合は調整） */
  font-weight: normal;    /* 任意：数字の太さ */
  color: #333;            /* 任意：数字の色 */
}

@media screen and (max-width: 768px) {
    
    .number-list > li {
        font-size: 1.4rem;
    }
}

.number-list__mb0 > li{
    margin-bottom: 0;   
}

.inner-list__katakana li{
    padding-left: 1.2em;
    text-indent: -1.2em;
    font-size: 1.8rem;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .inner-list__katakana li{
        font-size: 1.4rem;
    }
    
}

.item-complaint-tel{
    border-radius: 5px;
    padding: 50px 10px 60px;
}

@media screen and (max-width: 768px) {
    .item-complaint-tel{
        padding: 20px;
    }
    
}

.bk-square{
    background: url(../img/bk-square.png);
}

.item-w580{
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

.dl-list__w150 dt{
    width: 150px;
}

.dl-list__w150 dd{
    width: calc(100% - 150px);
    font-size: 1.8rem;
}

.complaint-tel,
.complaint-tel a{
    color: var(--primary-pink-color);
    font-size: 3.0rem;
    margin-right: 20px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    
    .dl-list__w150 dt,
    .dl-list__w150 dd{
        width: 100%;
        font-size: 1.4rem;
        text-align: center;
    }
    .complaint-tel,
    .complaint-tel a{
        font-size: 2.4rem;
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/*-----------------disclosure-----------------*/

.pdf-list li a{
    font-size: 1.8rem;
}

.pdf-list li a:before{
    display: inline-block;
    content: "";
    width: 22px;
    height: 23px;
    background: url(../img/icon-pdf.png) no-repeat;
    margin-right: 8px;
    vertical-align: -3px;
}

@media screen and (max-width: 768px) {
    .pdf-list li a{
        font-size: 1.4rem;
    }
    
}


.section-disclosure {
    padding: 100px 0 70px;
}

@media screen and (max-width: 768px) {

    .section-disclosure {
        padding: 20px 0;
    }
}

.section-disclosure .dt275-list{
    padding: 20px 0;
}

.section-disclosure .dt275-list:first-of-type{
    border-top: none;
} 


/*-----------------recruit-----------------*/

.recruit-content-title{
    font-size: 2.0rem;
    font-weight: 600;
    color: var(--primary-pink-color);
}

@media screen and (max-width: 768px) {
    
    .recruit-content-title{
        font-size: 1.6rem;
    }
}


/*-----------------topics-----------------*/



/*----pagenavi---*/

/* 外枠のコンテナ */
.wp-pagenavi {
    clear: both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* ボタン同士の間隔 */
    font-family: sans-serif;
}

/* すべてのボタン共通（数字・Next） */
.wp-pagenavi a, 
.wp-pagenavi span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 40px; 
    color: #fff;
    background-color: var(--primary-yellow-green-color); 
    transition: opacity 0.2s;
}

/* 数字ボタン（正円にする） */
.wp-pagenavi a.page,
.wp-pagenavi span.current {
    width: 40px;
    border-radius: 50%;
    font-weight: bold;
}

/* 現在のページのスタイル（白抜き・青枠） */
.wp-pagenavi span.current {
    background-color: #fff;
    color: var(--primary-yellow-green-color);
    border: 2px solid var(--primary-yellow-green-color);
    box-sizing: border-box; /* 枠線分で大きくならないように */
}

/* Nextボタン（横長のカプセル型） */
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink{
    padding: 0 24px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* ホバー時の演出 */
.wp-pagenavi a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    
    .wp-pagenavi a, 
    .wp-pagenavi span {
        height: 30px;
        font-size: 1.4rem;
    }
    
    .wp-pagenavi a.page,
    .wp-pagenavi span.current {
        width: 30px;
    }
    
    .wp-pagenavi {
        flex-wrap: wrap; /* ボタンが多い時に自動で改行 */
        row-gap: 12px; /* 改行された時の上下の間隔 */
    }
}

/*.wp-pagenavi a,
.wp-pagenavi span{
    margin-right: 15px;
    font-weight: 500;
}

.wp-pagenavi span.current{
    border-bottom: 1px solid;
}

.wp-pagenavi a:hover{
    border-bottom: 1px solid;
}

.wp-pagenavi a:last-child{
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .wp-pagenavi a,
    .wp-pagenavi span{
        font-size: 1.4rem;
    }
}

.pagenavi-single-post a,
.pagenavi-single-post span {
    margin-right: 30px;
}

.pagenavi-single-post a:last-child{
    margin-right: 0;
}*/


.news-detail-title{
    display: block;
    padding-bottom: 20px;
    border-bottom: dotted 1px #000;
}

.news-detail-title dt{
    margin-bottom:10px;
    width: 100%;
}

.news-detail-title dd{
    font-size: 2.4rem;
    font-weight:600;
    width: 100%;
}

.news-detail-content{
    padding: 50px 0 100px;
}

.news-detail-content{
    font-size: 1.8rem;
}

.news-detail-content p{
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    
    .news-detail-title dd{
    font-size: 1.8rem;
}
    
    .news-detail-content,
    .news-detail-content p{
        font-size: 1.4rem;
    }

    .news-detail-content{
        padding: 20px 0 40px;
    }
}


/*-----------------about-----------------*/

.marker {
  background: linear-gradient(transparent 60%, #ffff66 40%);
  
  /* 文字の周りに少し余裕を持たせると綺麗に見えます */
  padding: 0 4px;
  font-weight: bold; /* 画像のように太字にしたい場合 */
  color: #669933;    /* 画像のような緑色にする場合 */
}


.section-title__yellow-green_r{
    color: var(--primary-yellow-green-color);
    font-size: 3.0rem;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    
    .section-title__yellow-green_r{
        font-size: 2.3rem;
    }
}

.star-list__blue li::before{
    display: inline-block;
    content:"";
    width: 18px;
    height: 17px;
    background: url(../img/icon-star-blue.png);
    margin-right:10px;

}

.rocknroll-one-regular-list li{
    font-size: 1.8rem;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.item-670__ml250{
    width: 670px;
    margin-left: 250px;
    text-align: left;
}

.section-hoikuhoshin{
    padding-bottom: 150px;
}


@media screen and (max-width: 768px) {
    
    .star-list__blue li::before{
        margin-right: 5px;
        vertical-align: -3px;
        background-repeat: no-repeat;
    }

    .rocknroll-one-regular-list li {
        font-size: 1.4rem;
        padding-left: 1.6em;
        text-indent: -1.6em;
    }
    
    .item-670__ml250{
        width: 100%;
        margin-left: 0;
    }
    
    .section-hoikuhoshin{
        padding-bottom: 50px;
    }

}





.rocknroll-one-regular-title__pink36{
    font-size: 3.6rem;
    color: var(--primary-pink-color); 
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    
    .rocknroll-one-regular-title__pink36{
    font-size: 2.7rem;
}
}

.colorful-dotted-wrapper{
    margin-bottom: 50px;
}

.colorful-dotted{
    position: relative;
}

.colorful-dotted::after{
    content:"";
    background: url(../img/icon-colorful-dotted.png);
    width: 304px;
    height: 9px;
    position: absolute;
    bottom:-15px;
    left: 0;
}

@media screen and (max-width: 768px) {
    
    .colorful-dotted-wrapper{
        margin-bottom: 40px;
    }
    
    .colorful-dotted::after{
        width: 230px;
    }
    
}

.txtcenter .colorful-dotted::after{
    left: 50%;
    transform: translateX(-50%);
}

.section-about-gaiyo {
    padding: 50px 0 20px;
}


.section-about-gaiyo .wrapper{
    position: relative;
}

.deco-crayon{
    position: absolute;
    top:-30px;
    left:100px;
}

.deco-hippo-elephant{
    position: absolute;
    top: -150px;
    right: 10px;
}

@media screen and (max-width: 768px) {
    
    .deco-crayon{
        top: -50px;
        left: 00px;
        width: 60px;
    }

    .deco-hippo-elephant{
        top: -100px;
        right: 0px;
        width: 200px;
    }
}

.section-about-gaiyo .dt275-list dd{
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    
    .section-about-gaiyo .dt275-list dd{
        padding-left: 1.8em;
        font-size: 1.6rem;
    }
}

.section-about-torikumi {
    padding: 100px 0 50px;
}

.two-columns-flex.about-torikumi .about-torikumi__text-item {
    width: 54%;
    position: relative;
}

.two-columns-flex.about-torikumi .about-torikumi__img-item {
    width: 46%;
    position: relative;
    margin-top: -40px;
}

@media screen and (max-width: 768px) {
    .two-columns-flex.about-torikumi .about-torikumi__text-item,
    .two-columns-flex.about-torikumi .about-torikumi__img-item {
    width: 100%;
    }
    
    .two-columns-flex.about-torikumi .about-torikumi__img-item {
        margin-top: 0;
    }
    
}

.about-torikumi__text-item .img-sakura{
    position: absolute;
    right: 70px;
    top: 0px;
}

@media screen and (max-width: 768px) {
    .about-torikumi__text-item .img-sakura{
        right: auto;
        left: 200px;
        top: 15px;
        width: 40px;
    }
    
    
}

.three-columns-flex.about-torikumi > div{
    width: 33%;
}

.about-torikumi__green-title{
    color: var(--primary-green-color);
    font-size: 2.4rem;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-top: -20px;
}

@media screen and (max-width: 768px) {
    .about-torikumi__green-title{
        font-size: 1.6rem;
        margin-top: 0;
    }
    
}

.section-about-kyushoku .wrapper{
     position: relative;
}

.deco-tumiki{
    position: absolute;
    top:-30px;
    right:100px;
}

.deco-flamingos{
    position: absolute;
    top: -150px;
    left: 10px;
}

.deco-minitrain{
    position: absolute;
    bottom: -50px;
    left: 100px;
}


@media screen and (max-width: 768px) {
    
    .deco-flamingos{
        top: -80px;
        left: 0px;
        width: 80px;
    }
    
    .deco-tumiki{
        top: -30px;
        right: 0px;
        width: 80px;
    }
    
    .deco-minitrain{
        width: 130px;
        bottom: -60px;
        right: 0;
        left: auto;   
    }
    
}



.three-columns-flex.about-kyushoku{
    column-gap: 20px;
}

.three-columns-flex.about-kyushoku > div{
    width: calc(33.3333% - 40px/3);
}

@media screen and (max-width: 768px) {
    
    .three-columns-flex.about-kyushoku{
        row-gap:10px;
    }
    .three-columns-flex.about-kyushoku > div{
        width: 80%;
        max-width: 270px;
    }
    
    .three-columns-flex.about-kyushoku > div:nth-child(2){
        margin-right: 0;
        margin-left: auto;
    }
    
}

.about-kyushoku__item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-kyushoku__item__img {
  z-index: 1; /* 画像を下に配置 */
}

.about-kyushoku__item__img .round-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* 方眼紙風のテキストボックス */
.about-kyushoku__item__text {
  width: 300px;
height: 150px;
  background-image: url(../img/bk-square.png);
  background-position: center;
  padding: 25px;
  border-radius: 10px;
  
  /* 画像に被せるための設定 */
  margin-top: -20px; 
  z-index: 2;
  position: relative;
}

.about-kyushoku__item__text p {
  margin: 0;
  line-height: 1.8;
}

@media screen and (max-width: 920px) {
    .about-kyushoku__item__text {
        width: 200px;
        height: 100px;
        padding: 10px 15px;
    }
    
    .about-kyushoku__item__text p {
        font-size: 1.2rem;
    }
    
}

/*---------------flow----------------*/


/* 基本設定 */

.schedule-group {
  margin-bottom: 50px;
}

.group-title {
  text-align: center;
  margin-bottom: 20px;
}

.title-nursery__large{
    font-size: 3.0rem;
    color: var(--primary-yellow-green-color);
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.title-nursery__small{
    font-size: 2.2rem;
    color: var(--primary-yellow-green-color);
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.title-preschool__large{
    font-size: 3.0rem;
    color: #00919c;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.title-preschool__small{
    font-size: 2.2rem;
    color: #00919c;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.icon-orange{
    position: relative;
}

.icon-orange::before{
    content: "";
    background-image: url(../img/icon__left-orange.png);
    width: 23px;
    height: 30px;
    position: absolute;
    left: -25px;
    top: -25px;
}

.icon-orange::after{
    display: inline-block;
    content: "";
    background-image: url(../img/icon__right-orange.png);
    width: 23px;
    height: 30px;
    position: absolute;
    right: -10px;
    top: -25px;
}

/* 1行の基本スタイル */
.schedule-item {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
  position: relative;
}

@media (min-width: 768px) {
    .schedule-item {
        margin-bottom: 80px;
    }
}

/* 乳児：[吹き出し] [時間] */
.is-nursery .schedule-item {
  flex-direction: row;
}

/* 幼児：[時間] [吹き出し] */
.is-preschool .schedule-item {
  flex-direction: row-reverse;
  position: relative;
}

/* 吹き出しのスタイル（共通） */
.balloon {
    width: 100%;
  flex: 1;
    padding: 10px 10px 10px 30px;
    border-radius: 8px;
    border: 4px solid;
    position: relative;
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .balloon {
        font-size: 2.4rem;
    }
}
.is-nursery .balloon { border-color: #a3d99d;position:relative; } /* 緑 */
.is-preschool .balloon { border-color: #00919c;position:relative; } /* 青 */

/* 時間ユニット（数字＋時計） */
.time-unit {
  width: 85px;
    text-align: center;
    font-size: 1.6rem;
    padding-top: 30px;
    margin-top: 0;
    line-height: 1.2;
    position: relative;
    padding-top: 50px;
}

/* 時計（疑似要素） */
.time-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 時計の針を時間ごとに切り替える（例） */
.t730::before { background-image: url('../img/clock_730.png'); }
.t845::before { background-image: url('../img/clock_845.png'); }
.t940::before { background-image: url('../img/clock_940.png'); }
.t1000::before { background-image: url('../img/clock_1000.png'); }
.t1020::before { background-image: url('../img/clock_1020.png'); }
.t1030::before { background-image: url('../img/clock_1030.png'); }
.t1130::before { background-image: url('../img/clock_1130.png'); }
.t1145::before { background-image: url('../img/clock_1145.png'); }
.t1230::before { background-image: url('../img/clock_1230.png'); }
.t1300::before { background-image: url('../img/clock_1300.png'); }
.t1430::before { background-image: url('../img/clock_1430.png'); }
.t1500::before { background-image: url('../img/clock_1500.png'); }
.t1550::before { background-image: url('../img/clock_1550.png'); }
.t1600::before { background-image: url('../img/clock_1600.png'); }
.t1830::before { background-image: url('../img/clock_1830.png'); }

/* 青い点々 (after) ★今回追加分 */
.time-unit::after {
    content: "";
    position: absolute;
    /* bottomを -15px から -8px 前後に引き上げます */
    bottom: -10px; 
    left: 50%;
    transform: translateX(-50%);

    width: 5px;
    height: 5px;
    background-color: #00919c;
    border-radius: 50%;

    /* 2つ目の丸の位置（12px）はそのまま維持 */
    box-shadow: 0 12px 0 0 #00919c;
}

/* 一番最後の時間の後は点々を消す */
.schedule-item:last-child .time-unit::after {
  display: none;
}


@media (min-width: 768px) {
  .schedule-container {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  
  .time-unit {
    font-size: 2.4rem;
    margin-top: -40px;
    line-height: 1.2;
    position: relative;
    padding-top: 90px;
  }
  
  .time-unit::before {
  width: 85px;
  height: 85px;
  }
  
  /* 中央の点線 */
  /*.schedule-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 0;
    border-left: 2px dashed #ccc;
    transform: translateX(-50%);
  }*/

  .schedule-group {
    width: 36%; /* 中央に余白を持たせる */
    margin-bottom: 0;
  }

  /* PC版では幼児側の時間を消し、乳児側の時間を中央へ */
  .is-preschool .time-unit {
    display: none;
  }

  .is-nursery .schedule-item {
    justify-content: flex-end; /* 吹き出しを右寄せ（中央寄り）に */
    position: static;
    align-items: center;
  }

  .is-nursery .time-unit {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff; /* 背景を白にして点線を隠す */
    padding: 85px 0 0px;
    margin-top: 30px;
    z-index: 2;
  }

  /* 幼児側の吹き出しを左寄せ（中央寄り）に */
  .is-preschool .schedule-item {
    justify-content: flex-start;
  }
}

/* 枠線がある場合のしっぽ（回転させた正方形） */
.balloon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff; /* 吹き出しの背景色 */
  border-bottom: 4px solid; /* 吹き出しの枠線と同じ太さ */
  border-right: 4px solid;
  top: 50%;
}

/* 乳児：右側に配置して回転 */
.is-nursery .balloon::after {
  right: -8px;
  border-color: #a3d99d;
  transform: translateY(-50%) rotate(-45deg);
}

/* 幼児：左側に配置して回転 */
.is-preschool .balloon::after {
  left: -8px;
  border-color: #00919c;
  transform: translateY(-50%) rotate(135deg);
}

@media (min-width: 768px) {
  /* 1. まず、SP版で反転させた並び順を「標準」に戻す */
  .is-preschool .schedule-item {
    flex-direction: row; /* これが抜けていたため、しっぽの左右が逆転していました */
  }

  /* 2. その上で、しっぽの向きを固定する */
  .is-nursery .balloon::after {
    right: -8px;
    left: auto;
    transform: translateY(-50%) rotate(-45deg);
  }

  .is-preschool .balloon::after {
    left: -8px;
    right: auto;
    transform: translateY(-50%) rotate(135deg);
  }
}

.flow-adjustment-img01{
    margin-top: -40px;
    margin-bottom: 40px;
}

.flow-adjustment-img02{
    margin-bottom: 60px;
}

.flow-adjustment-img03{
    margin-bottom: 0;
}

@media (max-width: 768px) {
    
    .flow-adjustment-img01{
    margin-top: 0px;
    margin-bottom: 10px;
}

.flow-adjustment-img02{
    margin-bottom: -40px;
}

.flow-adjustment-img03{
    margin-bottom: 30px;
}

.flow-adjustment-img01__img-wrapper{
    flex:1;
}

.flow-adjustment-img01__img{
   /* width: 80%;*/
    max-width: 195px;
    margin: -20px auto 20px;
}

.flow-adjustment-img04__img{
    /*width: 50%;*/
    max-width: 120px;
    margin: -20px auto 20px;
}

.flow-adjustment-img02__img{
   /* width: 80%;*/
    max-width: 195px;
            margin: 0 auto;
    }

}

.section-flow-day{
    padding: 70px 0 30px;
}

.section-flow-nenkangyoji{
    padding:100px 0;
}

@media (max-width: 768px) {
    
    .section-flow-nenkangyoji{
        padding: 50px 0 10px;
    }
}

.flow-nenkangyoji-items01{
    column-gap: 10px;
}

.flow-nenkangyoji-items01_img{
    width: 420px;
    max-width: 40%;
}

.flow-nenkangyoji-items01_text{
    width: calc(100% - 430px);
    border-radius: 10px;
    background: #fff;
    padding: 20px 60px;
    column-gap: 10px;
    row-gap: 30px;
}

.flow-nenkangyoji-items02{
    column-gap: 10px;
    flex-direction: row-reverse;
}

.flow-nenkangyoji-items02_img{
    width: 420px;
    max-width: 40%;
}

.flow-nenkangyoji-items02_text{
    width: calc(100% - 430px);
    border-radius: 10px;
    background: #fff;
    padding: 20px 20px 20px 25px;
    column-gap: 2px;
    row-gap: 30px;
}

.month-block{
    width: calc(33.3333% - 20px/3);
}

.flow-nenkangyoji-items02_text .month-block{
    width: calc(33.3333% - 10px/3);
}

@media (max-width: 1150px) {
    

.flow-nenkangyoji-items01,
    .flow-nenkangyoji-items02{
        justify-content: center;
    }
    
    .flow-nenkangyoji-items02_text{
        padding: 20px 0 20px 10px;
    }
    
    .flow-nenkangyoji-items01_text{
        padding: 20px;
    }
}

@media (max-width: 768px) {
    
    
    .flow-nenkangyoji-items01_img{
        width: 100%;
        max-width: inherit;
        max-width: 300px;
        margin-bottom: 10px;
    }

    .flow-nenkangyoji-items01_text{
        width: 100%;
        padding: 20px;
        row-gap: 20px;
    }

    .flow-nenkangyoji-items02_img{
        width: 100%;
        max-width: inherit;
        max-width: 300px;
        margin-bottom: 10px;
    }


    .flow-nenkangyoji-items02_text{
        width: 100%;
        padding: 20px 0 20px 10px;
        row-gap: 20px;
    }
    
}


/* 月のタイトル（pタグ） */
.month-name {
    margin: 0 0 5px 0;
    text-indent:-.5em;
    font-size: 1.6rem;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-family: "RocknRoll One", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -1px;
}

/* ★を疑似要素の背景画像で実装 */
.event-item::before {
    content: "";
    display: inline-block;
    width: 19px;  /* 画像のサイズに合わせて調整 */
    height: 17px; /* 画像のサイズに合わせて調整 */
    margin-right: 5px;
    flex-shrink: 0;
    
    /* 画像ファイルを指定。適宜パスを書き換えてください */
    background-image: url('../img/icon-star.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    /* 画像がない場合の代用（動作確認用） */
    /*background-color: #f3bc4c;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);*/
}

/* スマホ用 */
@media (max-width: 1100px) {
    
    .month-block,
    .flow-nenkangyoji-items02_text .month-block {
      /*  flex: 0 1 100%;*/
        width:calc(50% - 20px/2);
        padding-right: 0;
    }
    
    .month-name{
        font-size: 1.2rem;
    }
    
    .event-item {
        margin-bottom: 3px;
        font-size: 1.2rem;
    }
}

@media (max-width: 1100px) {
    
    .month-block,
    .flow-nenkangyoji-items02_text .month-block {
      /*  flex: 0 1 100%;*/
        width:calc(50% - 10px/2);
        padding-right: 0;
    }
}











/*---------------bukken----------------*/

.section-circle-link{
    padding: 60px 0;
}

@media screen and (max-width: 768px) {

    .section-circle-link{
        padding: 30px 0;
    }
}

.wrapper_sold{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
}

.txt_sold{
    background: #ea5413;
    padding: 5px 10px;
    border-radius: 5px;  
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;    
}

.txt_negotiating{
    background: #54b65b;
    padding: 5px 10px;
    border-radius: 5px;  
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;    
}

@media screen and (max-width: 768px) {
    .txt_sold,
    .txt_negotiating{
        font-size: 1.2rem;
    }
}

.pointer-none{
    pointer-events: none;
}

/*---------------bukken-mansion----------------*/

.section-bulletin-board{
    padding: 70px 0 80px;
}

.section-bulletin-board img{
    width: 100%;
    height: auto;
}

.section-property-listings{
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .section-bulletin-board{
        padding: 30px 0 40px;
    }
    
    .section-property-listings{
        padding-top: 30px;
    }
}

/*---------------bukken-single----------------*/

.section-bukken-single-info-wrap{
    padding: 50px 0 70px;
}

.bukken-name{
    color:#ea5413;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.bukken-name::before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 23px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/icon-company-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
   /* vertical-align: b;*/
    margin-right: 20px;
    vertical-align: middle;
}

.bukken-information-wrap{
    display: flex;
    flex-wrap:wrap;
    margin-bottom: 70px;
}

.bukken-information__photo-wrap{
    width: calc(100% - 415px);
    padding-right:30px;
}

.bukken-information__txt-wrap{
    width: 415px;
    background: #fdf6d2;
    padding: 40px 20px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {

    .section-bukken-single-info-wrap{
        padding: 30px 0 40px;
    }

    .bukken-information-wrap{
        margin-bottom: 30px;
    }

    .bukken-information__photo-wrap{
        width: 100%;
        padding-right: 0;
    }

    .bukken-information__txt-wrap{
        width: 100%;
        padding: 20px;
    }

    .bukken-name {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding-left: 40px;
        text-indent: -45px;
    }

}

.bukken-information__list{
    display: flex;
    flex-wrap: wrap;
   /* align-items: center;*/
    margin-bottom: 40px;
}

.bukken-information__list:last-child{
    margin-bottom: 0;
}

.bukken-information__list dt{
    width: 90px;
    height:32px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    background: #ea5413;
    padding:5px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight:400;
    transform: rotate(0.03deg);
}

.bukken-information__list dd{
    font-size: 1.4rem;
    font-weight:500;
    transform: rotate(0.03deg);
}

.bukken-information__price{
    font-size: 1.8rem;
    color:#ea5413;
    font-weight: 600;
}

.bukken-information__price span{
    font-size: 2.4rem;
    color:#ea5413;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .bukken-information__list{
        margin-bottom:20px;
    }

    .bukken-information__list dt,
    .bukken-information__list dd,
    .bukken-information__price{
        font-size: 1.2rem;
    }

    .bukken-information__price span{
        font-size: 1.8rem;
    }

}

.button-bukken-contact{
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
    width:320px;
    height: 80px;
    padding: 35px 10px 10px 10px;
    background: #ea5413;
    text-align: center;
    position: relative;
}

.button-bukken-contact::before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 25px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    background-image: url(../img/icon-envelope.png);
    background-size: contain;
    background-repeat: no-repeat;
   /* vertical-align: b;*/
    margin-right: 20px;
    vertical-align: middle;
    position: absolute;
    top: 15px;
    left: 50%;
    margin-left: -12.5px;
}

.section-bukken-recommendations{
    padding: 60px 0 100px;
}

@media screen and (max-width: 768px) {
    .section-bukken-recommendations{
        padding: 30px 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .button-bukken-contact{
        font-size: 1.8rem;
    }
}

.title_orange{
    color: #ea5413;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.list_orange-check li{
    font-size: 1.8rem;
    margin-bottom: 10px;
    background-image: url(../img/icon-check-orange.png);
    background-repeat: no-repeat;
    background-size:auto 20px;
    padding-left: 25px;
    
}

/*.list_orange-check li:before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 20px;
    background-image: url(../img/icon-check-orange.png);
    background-size: contain;
    background-repeat: no-repeat;

    margin-right: 10px;
    vertical-align: sub;
}*/

@media screen and (max-width: 768px) {
    .title_orange{
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .list_orange-check li{
        font-size: 1.4rem;
    }
    .list_orange-check li{
        background-size: auto 15px;
    }
    
}



.detail_list {
   /* width: 49%;*/
    display: flex;
    flex-wrap: wrap;
}

.detail_list li {
    width: calc(50% - 20px/2);
    margin-right: 20px;
    color: #5b5b5b;
    margin-bottom: 10px;
}

.detail_list li:nth-child(2n) {
    margin-right: 0;
}

.detail_list li span {
    padding: 2px 10px;
    background: #fff;
    display: inline-block;
    width: 100%;
}

.detail_list li span.subttl {
    font-weight: 500;
    display: inline-block;
    width: 100%;
    background: #cfeaf6;
    padding: 2px 10px;
}

@media screen and (max-width: 768px) {

    .detail_list {
        width: 100%;
    }

    .detail_list li {
        margin-bottom: 5px;
        width: 100%;
        margin-right: 0;
    }

    .detail_list li span {
        font-size: 1.2rem;
    }
   
}

.section-bukken-map{
    padding: 70px 0 0;
}

.section-bukken-map iframe{
    width: 100% !important;
    height: 450px !important;
}

@media screen and (max-width: 768px) {
    .section-bukken-map{
        padding: 30px 0 0;
    }

    .section-bukken-map iframe{
        height: 200px !important;
    }
    
}

/*-----------------company-----------------*/

.section-company-introduction {
    padding: 40px 0 70px;
}

@media screen and (max-width: 768px) {

    .section-company-introduction {
        padding: 20px 0 35px;
    }
}

.section-company-gaiyo{
    padding-top: 70px;
}

.company-gaiyo__list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.company-gaiyo__list:last-child{
    margin-bottom: 0;
}

.company-gaiyo__list dt{
    width: 125px;
    color:#ea5413;
    font-size: 1.6rem;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.company-gaiyo__list dd{
    width: calc(100% - 125px);
    font-size: 1.6rem;
    transform: rotate(0.03deg);
}

@media screen and (max-width: 768px) {

    .section-company-gaiyo{
        padding-top: 30px;
    }
    .company-gaiyo__list{
        margin-bottom: 20px;
    }

    .company-gaiyo__list dt,
    .company-gaiyo__list dd{
        width: 100%;
        font-size: 1.4rem;
    }
}




/*-----------------privacy-----------------*/

.section-privacy-content{
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .section-privacy-content{
        padding-top: 40px;
    }
}

.privacy-paragraph{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.privacy-content-txt{
    font-size: 1.6rem;
    line-height: 2.2;
    color: #000;
}

.privacy-title{
    text-align: center;
    font-size: 2.4rem;
    color: #ea5413;
    font-weight: 600;
    line-height: 2.2;
}

@media screen and (max-width: 768px) {

    .privacy-title{
        font-size: 1.8rem;
        margin:10px 0;
    }

    .privacy-content-txt{
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

.disc-list{
    margin-left: 15px;
}

.disc-list li{
    list-style-type: none;
    font-size: 1.6rem;
    line-height: 2;
}

.disc-list li:before{
    content: '';
	width: 2px;
	height: 2px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	position: relative;
	left: -8px;
	top: -3px;
}

@media screen and (max-width: 768px) {

    .disc-list li{
        font-size: 1.4rem;
        line-height: 1.6;
    }
}


/*-----------------info-----------------*/

.info-detail-title {
    color: #ea5413;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    
}

.info-detail-title::before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 23px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/icon-company-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
   /* vertical-align: b;*/
    margin-right: 20px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {

.info-detail-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-left: 40px;
    text-indent: -45px;
}

}

.info-contents{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 25px 0;
}

.info-contents p{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 1em;
}

.info-detail__date_cat{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {

    .info-contents{
        padding: 20px 0;
    }
    .info-contents p{
        font-size: 1.4rem;
    }

}

.pagenavi ul li{
    margin-right: 18px;
}

.pagenavi ul li:last-child{
    margin-right: 0;
}

.pagenavi ul li a{
    color: #000;
    font-size: 1.6rem;
    
}

.pagenavi ul li a.active,
.pagenavi ul li a:hover{
    border-bottom: 1px solid #000;
}


/*-----------------contact-----------------*/


.section-contact-wrapper{
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .section-contact-wrapper{
        padding-top: 30px;
    }
}

.contact__list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact__list:last-child{
    margin-bottom: 0;
}

.contact__list dt{
    width: 200px;
    color:#ea5413;
    font-size: 1.6rem;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.contact__list dd{
    width: calc(100% - 200px);
    font-size: 1.6rem;
    transform: rotate(0.03deg);
}

@media screen and (max-width: 768px) {

    .contact__list{
        margin-bottom: 20px;
    }

    .contact__list dt,
    .contact__list dd{
        width: 100%;
    }

    .contact__list dt{
        font-size: 1.4rem;
    }
}

.contact-address-list{
    display: flex;
    align-items: center;
}

.contact-address-list_column1{
    font-size: 1.4rem;
    width: 80px;
}

.required{
    color: #c0362f;
    font-size: 1.4rem;
    font-weight: 800;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {

    .contact-address-list_column1{
        font-size: 1.2rem;
        width: 60px;
    }
    
    .required{
        font-size: 1.2rem;
        margin-left: 10px;
        width: 40px;
    }
}

.input{
    border: 1px solid #d4d4d4;
    font-weight:500;
    padding: .5em .5em .5em .7em;
}

.select,
.textarea{
    border: 1px solid #d4d4d4;
    font-weight:500;
    padding: .5em .5em .5em .7em;  
}

.textarea{
    width: 100%;
    height: 250px;
}

.input_text01{
    width:100%;
    /*width: 300px;
    max-width: 300px;   */
    
}

.input_text02{
    width: 180px;
}

.input_text03{
    width: 300px;
    max-width: 300px;
}

.select01{
    width: 180px;
}

::placeholder {
    opacity: .5;
}

@media screen and (max-width: 768px) {

    .input,
    .select,
    .textarea{
        font-size: 1.6rem;
    }
    .input_text01{
        width: 100%;
        /*width: calc(100% - 50px);*/
    }
    .input_text02,
    .input_text03,
    .select01{
        max-width: 215px;
    }
    .contact-address-list_column2{
        width: calc(100% - 137px);
    }

    .textarea{
        width: 100%;
        height: 180px;
    }
}


.button-contact-submit{
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
    width:250px;
    height: auto;
    padding: 10px;
    background: #ea5413;
    text-align: center;
    position: relative;
    border: none;
    cursor: pointer;
}

.button_address{
    font-size:1.6rem;
    padding: 6px 10px;
    background: #e0e0e0;
    margin-left: 10px;
    cursor: pointer;
}

.button_address:hover{
    opacity: .7;
}

@media screen and (max-width: 768px) {
    .button_address{
        font-size: 1.2rem;
        padding: 12px 5px;
    }

}





/*.section-property-listings {
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    
    .section-property-listings {
        padding-top: 70px;
    }
}*/

/*-----------------slick-----------------*/

/*photo-slider サムネイル付写真slick*/

#photo-slider,
#photo-thumbnail_slider{
    width: 100%;
    margin: 0 auto 20px;
}

#photo-thumbnail_slider{
    margin: 0 auto;
}
.slide-item img{
    width: 100%;
}  
  .thumbnail-item img{
    width: 98%;
    margin: 0 auto;
}

#photo-slider .slick-next{
    right:5px;
}

#photo-slider .slick-prev{
    left:5px;
}


#photo-thumbnail_slider .slick-prev,
#photo-thumbnail_slider .slick-next{
    background-color: #fff;
    opacity: .8;
    width: 20px;
    height: 100%;
    background-image: none;
    background-position: center;
    z-index:1;
    border-radius:0;
    -webkit-border-radius: 0;
    top: 0;
    margin-top: 0;
}

#photo-thumbnail_slider .slick-prev{
    left: 0px;
}

#photo-thumbnail_slider .slick-next{
    right: 0px;
}

#photo-thumbnail_slider .slick-prev::before{
    content: "";
    display:block;
    width: 8px;
    height: 16px;
    margin-top: -8px;
    background-image: url(../img/btn-prev.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 30%;
}

#photo-thumbnail_slider .slick-next::before{
    content: "";
    display:block;
    width: 8px;
    height: 16px;
    margin-top: -8px;
    background-image: url(../img/btn-next.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 200;
    left: 25%;
}

@media screen and (max-width: 768px) {
    #photo-slider, 
    #photo-thumbnail_slider{
        margin: 0 auto 20px;
    }
}

/*---------------products----------------*/



/*.main-menu-list{
    display: flex;
}



.main-menu-list li a{
    display: block;
    width: 250px;
    height: 85px;
    background: #e8e9eb;
    padding-top: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0 / 10px 10px 0 0;
    margin-right: 1px;
}

.main-menu-list li a.active,
.main-menu-list li a:hover{
    background: #fff;
    opacity: 1 !important;

}

.main-menu-list li a span{
    display: block;
}



@media screen and (max-width: 768px) {

    

    .main-menu-list li:last-child{
        margin-right: 0;
    }

    .main-menu-list li a{
        width: 100%;
        padding-top: 5px;
        height: 50px;
    }

    .main-menu-list li a span.txtBlue{
        zoom: 0.8;
    }
}

.title-vertical-line{
    position: relative;
}

.title-vertical-line::before {
    position: absolute;
    content: '';
    top: -90px;
    left: 50%;
    margin-left: -1px;
    display: block;
    width: 1px;
    height: 60px;
    background-image: url(../img/vertical-line.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {

    .title-vertical-line::before {
        top: -40px;
        height: 30px;
    }


}

.products_jisha-tasha-link-item{
    display: flex;
    margin-bottom: 150px;
}

.products_jisha-tasha-link-item > a{
    width: calc( 50% - 40px/2 );
    height: 370px;
    background:#f6f8fb;
    text-align: center;
}

.products_jisha-tasha-link-item > a:first-child{
    margin-right: 40px;
}

.products_jisha-tasha-link-item > a > div{
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-jisha{
    width: 420px;
    height: 115px;
}

@media screen and (max-width: 768px) {

    .products_jisha-tasha-link-item{
        margin-bottom: 45px;
    }

    .products_jisha-tasha-link-item > a img{
        width: auto;
        height: auto;
        max-width: 90%;
        max-height: 80%;
    }

    .products_jisha-tasha-link-item > a{
        width: calc( 50% - 15px/2 );
        height: 140px;
    }

    .products_jisha-tasha-link-item > a:first-child{
        margin-right: 15px;
    }

    .products_jisha-tasha-link-item > a > div{
        height: 100px;
    }

}*/

/*products-00*/

/*.products-img-wrap{
    width: 500px;
    padding-right: 50px;
}

.products-txt-wrap{
    width: 500px;
}

.square__back-line{
    display: flex;
    align-items: center;
}

.square__back-line span{
    width:200px;
    height: 50px;
    line-height:45px;
    font-size: 1.4rem;
    color: #000;
    background-color: #fff;
    border: 1px solid #b5b5b5;
    text-align: center;
}

.square__back-line::before{
    content: "";
    display: inline-block;
    background: #b5b5b5;
    width:145px;
    height: 1px;
}

.square__back-line::after{
    content: "";
    display: inline-block;
    background: #b5b5b5;
    width:145px;
    height: 1px;
}

.products__icon-yoto-wrap{
    width: 460px;
    margin:20px auto;
    display:flex;
}

.products__icon-yoto-item{
    width: 25%;
}

.products__icon-yoto-item div,
.products__icon-yoto-item p{
    text-align: center;
}

.link__catalogue-download{
    font-size: 1.8rem;
    font-weight: 700;
    color: #0864b2;
    border-bottom: 2px solid #7faed6;
}

.flex-wrap__l690-r310{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.flex-wrap__l690-r310:last-child{
    margin-bottom: 0;
}

.flex-item__l690{
    width: 690px;
}

.flex-item__r310{
    width: 310px;
}

.title-blue-underline{
    position: relative;
}

.title-blue-underline:after{
    position: absolute;
    content:"";
    left:0;
    bottom: -10px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background:#0864b2;

}

.flex-wrap__l500-r500{
    display: flex;
    flex-wrap: wrap;
}

.flex-item__l500{
    width: 500px;
}

.flex-item__r500{
    width: 500px;
}

.flex-wrap__l500-r500 img{
    margin-right: 1px;
    margin-bottom: 1px;
}

.table-style01{
    width: 100%;
    border-right: 1px solid #b5b5b5;
    border-top: 1px solid #b5b5b5;
}

.table-style01 th,
.table-style01 td{
    border-left: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    height: 50px;
}

table.scroll{
    width: 100%;
    table-layout: inherit;
    white-space: inherit;
}

.table-style01 th{
    background: #f6f8fb;
}
.table-style01 th.w27{
    width: calc( 27% - 3px/4 );
}

.table-style01 th.w32{
    width: calc( 32% - 3px/4 );
}

.table-style01 th.w12{
    width: calc( 12% - 3px/4 );
}

@media screen and (max-width: 768px) {
    .table-style01 td{
        padding-right: 20px;
        padding-left: 20px;
    }

    .table-style01 th{
        padding-right: 20px;
        padding-left: 20px;
    }


}

.w65{
    width: 65px;
}

.product-list-01 span{
    display: inline-block;
}

.product__item-box{
    height: 155px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__item-box-img{
    margin-right: 30px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .products-img-wrap{
        width: 80%;
        padding-right: 0;
        margin: 0 auto;
    }

    .products-txt-wrap{
        width: 100%;
        margin-bottom: 30px;
    }

    .products-img-wrap img{
        max-width: 100%;
    }

    .square__back-line{
        justify-content: center;
    }

    .square__back-line span{
        width: 120px;
        height: 30px;
        font-size: 1.2rem;
        line-height: 26px;
    }
    .products__icon-yoto-wrap {
        width: 100%;
    }
    .products__icon-yoto-wrap div img{
        max-width: 80%;
    }
    .products__icon-yoto-wrap p{
        font-size: 1.0rem;
    }

    .link__catalogue-download{
        font-size: 1.2rem;
    }

    .title-blue-underline:after{
        bottom: -5px;
        width: 40px;
        height: 3px;
    }

    .flex-wrap__l690-r310 {
        margin-bottom: 40px;
    }

    .flex-item__l690{
        width: 100%;
    }
    .flex-item__r310{
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }
    .flex-item__r310 img{
        max-width: 100%;
    }

    .flex-item__l500{
        width: 100%;
        margin-bottom: 20px;
    }
    .flex-item__l500 img{
        max-width: 100%;
    }
    .flex-item__r500{
        width: 100%;
    }
    .flex-item__r500 img{
        width: calc(33.3333% - 2px/3);
    }

    .flex-item__r500 img:nth-child(3n){
        margin-right: 0;
    }
    table.scroll{
        overflow-x: scroll;
        white-space: nowrap;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .product__item-box{
        height: auto;
        padding: 20px;
    }

    .product__item-box-img{
        width: 22%;
        margin-right: 0;
    }
    .product__item-box-img img{
        max-width: 90%;
    }
    .product__item-box-txt{
        width: 78%;
    }
}*/

/*products-01*/

/*.product-category-list{
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-list li{
    border-left: 1px solid #000;
}

.product-category-list li:last-child{
    border-right: 1px solid #000;
}


.product-category-list li a{
    width: 250px;
    display: inline-block;
    height: 45px;
    line-height: 43px;
    text-align: center;
    font-size: 1.6rem;
}

.product-tasha-machine-wrap{
    display: flex;
    flex-wrap: wrap;
}
.product-tasha-machine-item{
    width: calc(33.3333% - 40px/3);
    margin-right: 20px;
    margin-bottom: 40px;
}

.product-tasha-machine-item:nth-child(3n){
    margin-right: 0;
}

.product-tasha-machine-item div{
    text-align: center;
    height: 200px;
}

.bk-blue{
    background:#0864b2;
    padding:5px 10px;
    color: #fff;
}



@media screen and (max-width: 768px) {

    .product-category-list{
        margin:0 auto 80px;
        width: 80%;
    }

    .product-category-list li{
        width: 50%;
    }

    .product-category-list li a{
        width: 100%;
        height: 25px;
        line-height: 25px;
        font-size: 1.4rem;
    }

    .product-tasha-machine-item{
        width: 50%;
        margin-right: 0;
    }

    .product-tasha-machine-item div{
        height: 100px;
    }

    .product-tasha-machine-item div img{
        max-width: 80%;
        max-height: 80%;
    }

    .bk-blue{
        font-size: 1.0rem;
        padding:3px;
    }

}*/


/*company*/

/*.mainvisual-company {
    background-image: url(../img/mainvisual-company.jpg);
    background-size: cover;
    background-position: center;
}

.dotted-list{
    border-top: 1px dashed #000;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.dotted-list:last-child{
    border-bottom: 1px dashed #000;
}

.company-gaiyo-list dt{
    width: 250px;
}

.company-gaiyo-list dd{
    width: calc(100% - 250px);
}

.company-enkaku-list dt{
    width: 150px;
}

.company-enkaku-list dd{
    width: calc(100% - 150px);
}

@media screen and (max-width: 768px) {

    .kokoroe-img{
        width: 90%;
        margin:0 auto;
    }

    .kokoroe-img img{
        max-width: 100%;
    }

    .dotted-list{
        padding: 10px 0;
    }

    .company-gaiyo-list dt{
        width: 100%;
        margin-bottom: 5px;
    }

    .company-gaiyo-list dd{
        width: 100%;
    }

    .company-enkaku-list dt{
        width: 100%;
        margin-bottom: 5px;
    }
    
    .company-enkaku-list dd{
        width: 100%;
    }

    .section-map iframe.h380sp{
        height: 380px !important;
    }
}*/

/*office*/

/*.office-list dt{
    width: calc(100% - 100px);
}

.office-list dd{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.office__mail{
    margin-right: 20px;
}

.office__mail img,
.office__map img{
        width: 35px;
        height: auto;
    }

@media screen and (max-width: 768px) {
    .office-list dt,
    .office-list dd{
        width: 100%;
    }

    .office-list dd{
        justify-content: center;
        margin-top:10px;
    }

    .office__mail img,
    .office__map img{
        width: 47px;
        height: auto;
    }

    .office__mail{
        margin-right: 40px;
    }

}*/

/*client*/

/*.client-wrap{
    border-bottom: 1px dashed #000;
    border-top: 1px dashed #000;
    padding: 30px 0 40px;
}

.client-list{
    display: flex;
    flex-wrap: wrap;
}

.client-list li{
    width: 50%;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {

    .client-wrap{
        padding: 20px 0;
    }

    .client-list li{
        width: 100%;
        margin-bottom: 5px;
        font-size: 1.6rem;
    }
}*/

/*info*/

/*.mainvisual-info {
    background-image: url(../img/mainvisual-info.jpg);
    background-size: cover;
    background-position: center;
}

.info-wrap{
    border-bottom: 1px dashed #000;
    border-top: 1px dashed #000;
    padding: 30px 0 40px;
}


.mainvisual-info {
    background-image: url(../img/mainvisual-info.jpg);
    background-size: cover;
    background-position: center;
}

.info-detail-wrap{
    border-bottom: 1px dashed #000;
    border-top: 1px dashed #000;
    padding: 30px 0 10px;
}


@media screen and (max-width: 768px) {

    .info-wrap{
        padding: 20px 0;
    }
    .info-detail-wrap{
        padding: 20px 0 5px;
    }
}


.info-title{
    margin: 40px 0 70px 0;
    font-size: 1.8rem;
    text-align: center;
}

.info-content{
    margin-bottom: 50px;
}

.info-content p{
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 1.5em;
}

.news-detail-list{
    padding: 0;
    justify-content: flex-end;
}

.news-detail-list dt{
    width: auto;
}

@media screen and (max-width: 768px) {

    .info-title{
        margin: 20px 0 30px;
    }


}*/

/*contact*/

/*.mainvisual-contact {
    background-image: url(../img/mainvisual-contact.jpg);
    background-size: cover;
    background-position: center;
}

.contact-list01.first{
    border-top: 1px dashed #000;

}

.contact-list01{
    border-bottom: 1px dashed #000;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 40px;
}

.contact-list01 dt{
    font-size: 1.4rem;
    font-weight:bold;
    width: 190px;
    margin-top: 7px;
}

.contact-list01 dd{
    width: calc(100% - 190px);
}

@media screen and (max-width: 768px) {

    .contact-list01{
        padding: 15px 0 25px;
    }

    .contact-list01 dt{
        font-size: 1.2rem;
        margin-bottom:5px;
        width: 100%;
    }
    .contact-list01 dd{
        width: 100%;
    }
}


.blue-link-button {
    color: #fff;
    font-size: 2.0rem;
    font-weight: 800;
    display: inline-block;
    width: 300px;
    text-align: center;
    padding: 0.4em 2em;
    cursor: pointer;
    border-radius: 5px;
    background-color: #0864b2;
}


input[type=submit].blue-link-button{
    border: 1px solid #0864b2;
    border-radius: 5px;
}

input[type=submit].blue-link-button:hover{
    opacity: .8;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.underline {
    text-decoration: underline;
}*/


/*privacy*/

/*mainvisual-privacy {
    background-image: url(../img/mainvisual-privacy.jpg);
    background-size: cover;
    background-position: center;
}

.privacy-wrap{ 
    border-top: 1px dashed #000;
    padding: 40px 0;
}

.privacy-wrap.last{
    border-bottom: 1px dashed #000;
}

.box__p30{
    padding: 30px;
}



@media screen and (max-width: 768px) {

    .privacy-wrap{
        padding: 20px 0 15px;
    }
}*/

/*sitemap*/

/*.sitemap-list li{
    text-indent: 10px;
    padding:10px 0;
}

.sitemap-list > li > a{
    display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.8rem;
		text-decoration: none;
}

.sitemap-list > li > ul > li > a{
    display: block; 
    color:#555555 !important;
    padding:3px 0 3px 20px;
    font-size:1.8rem;
    text-decoration: none;
}

.sitemap-arrow:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/spnavi-arrow.png);
    background-size: contain;
    margin-right:5px;
}




@media screen and (max-width: 768px) {

    .sitemap-list li{
        padding:5px 0;
    }
    .sitemap-list > li > a{
        font-size:1.6rem;
    }
    .sitemap-list > li > ul > li > a{
        font-size:1.6rem;
    }
}*/



/*共通要素*/


/*共通　flexboxタグ
-----------------------------------------------------------*/

.flex{
    display: flex;
    flex-wrap: wrap;
}
.flexb{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flexc{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



@media screen and (max-width: 768px) {
    .blocksp{
        display: block;
    }
    .flex-dir_column_reverse-sp{
        flex-direction: column-reverse;
    }
}




/*背景
-----------------------------------------------------------*/
.bk-gray{
    /*background-color: #f6f8fb;*/
    background-image: url(../img/bk-gray-img.jpg);
}

.bk-yelllow{
    background-image: url(../img/bk-yellow-img.jpg);
}

/*a
-----------------------------------------------------------*/

a:hover{
    opacity: .8;
}

/*zoom in
-----------------------------------------------------------*/

.zoomIn img{
    transform: scale(1);
    transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  }

  .zoomIn a:hover{
    opacity: 1;
  }
  
  .zoomIn a:hover img{/*hoverした時の変化*/
    transform: scale(1.1);/*拡大の値を変更したい場合はこの数値を変更*/
    
  }
  
  /*　画像のマスク　*/
  
  .mask{
      display: block;
      line-height: 0;/*行の高さを0にする*/
      overflow: hidden;/*拡大してはみ出る要素を隠す*/
  }

/*その他装飾
-----------------------------------------------------------*/

.line-dashed{
    border-bottom: 1px dashed #000;
}

.line-dashed-top{
    border-top: 1px dashed #000;
}



.arrow-black-right::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../img/icon_arrow-black-right.png);
    background-size: contain;
    vertical-align: middle;
    margin-left: 7px;
}

.arrow-black-left::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../img/icon_arrow-black-right.png);
    background-size: contain;
    /*vertical-align: middle;*/
    margin-right: 7px;
}

.arrow-white-left::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url(../img/icon_arrow-white-right.png);
    background-size: contain;
    margin-right: 7px;
}

.button__simple-square{
    background: transparent;
    border: 1px solid rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;   
    font-size: 1.4rem;
    width: 300px;
    height: 50px;
}

@media screen and (max-width: 768px) {

    .button__simple-square{
        width: 230px;
        height: 35px;
    }

}


/*フェードイン
-----------------------------------------------------------*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/* 下から */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* 右から */

.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeRightAnime{
    from {
    opacity: 0;
    transform: translateX(100px);
    }

    to {
    opacity: 1;
    transform: translateX(0);
    }
}

/*text
-----------------------------------------------------------*/

.bold{
	font-weight: bold;
}

.txtcenter{
	text-align: center;
}

.txtright{
	text-align: right;
}

.txtjustify{
	text-align: justify;
}

.txtPink{
    color: var(--primary-pink-color);
}

.txtOrange{
    color: #ea5413;
}

.txtBlue{
    color: #0864b2;
}



.title-mincho{
    font-family: 'Noto Serif JP', serif;
    font-size: 3.0rem;
}

@media screen and (max-width: 768px) {
    .title-mincho{
        font-size: 2.4rem;
    }
    .txtleftsp{
        text-align: left;
    }
}

.blue-subtitle{
    font-size: 1.4rem;
    color: #0864b2;
}

@media screen and (max-width: 768px) {
    .blue-subtitle{
        font-size: 1.2rem;
    }
}

/*font
-----------------------------------------------------------*/

.fz12{
	font-size: 1.2rem;
}

.fz14{
	font-size: 1.4rem;
}

.fz16{
	font-size: 1.6rem;
}

.fz18{
	font-size: 1.8rem;
}

.fz20{
	font-size: 2.0rem;
}

.fz22{
	font-size: 2.2rem;
}

.fz24{
	font-size: 2.4rem;
}

.fz26{
	font-size: 2.6rem;
}
.fz28{
	font-size: 2.8rem;
}

.fz30{
	font-size: 3.0rem;
}

.fz35{
	font-size: 3.5rem;
}

.fz36{
	font-size: 3.6rem;
}

.fz40{
	font-size: 4.0rem;
}

.fz50{
	font-size: 5.0rem;
}

.fw700{
    font-weight: 700;
}

.fw400{
    font-weight: 400;
}

.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
}
.fw700{
    font-weight: 700;
}


.lsplus10{
	letter-spacing: 1px;
}

.lsminus05{
	letter-spacing: -.5px;
}

.lsminus10{
	letter-spacing: -1px;
}

.lsminus15{
	letter-spacing: -1.5px;
}

.lsminus18{
	letter-spacing: -1.8px;
}

.lsminus20{
	letter-spacing: -2px;
}

.lsplus15{
	letter-spacing: 1.5px;
}

.lh10{
	line-height: 1.0;
}

.lh12{
	line-height: 1.2;
}

.lh14{
	line-height: 1.4;
}

.lh18{
	line-height: 1.8;
}

.lh20{
	line-height: 2.0;
}
.lh25{
	line-height: 2.5;
}
.lh30{
	line-height: 3.0;
}

@media screen and (max-width: 768px) {

    .fz10sp{
        font-size: 1.0rem;
    }
    .fz12sp{
		font-size: 1.2rem;
	}
	.fz14sp{
		font-size: 1.4rem;
	}
	.fz15sp{
		font-size: 1.5rem;
	}
	.fz16sp{
		font-size: 1.6rem;
	}
	.fz18sp{
		font-size: 1.8rem;
	}
    .fz20sp{
        font-size: 2.0rem;
    }
	.fz22sp{
		font-size: 2.2rem;
	}
	.fz24sp{
		font-size: 2.4rem;
	}
	.fz28sp{
		font-size: 2.8rem;
	}
	.fz30sp{
		font-size: 3.0rem;
	}
	.lh14sp{
		line-height: 1.4;
	}
	.lh16sp{
		line-height: 1.6;
	}
    .lsminus20sp{
		letter-spacing: -2.0px;
	}
	.lsminus15sp{
		letter-spacing: -1.5px;
	}
	.lsminus10sp{
		letter-spacing: -1px;
	}

}


/*mt mb 調整タグ
-----------------------------------------------------------*/

.mt10{
    margin-top:10px;
}
.mt15{
    margin-top:15px;
}
.mt20{
    margin-top:20px;
}
.mt30{
    margin-top:30px;
}
.mt40{
    margin-top:40px;
}
.mt50{
    margin-top:50px;
}
.mt60{
    margin-top:60px;
}
.mt80{
    margin-top:80px;
}
.mt100{
    margin-top:100px;
}
.mb5{
    margin-bottom:5px;
}
.mb10{
    margin-bottom:10px;
}
.mb15{
    margin-bottom:15px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mb50{
    margin-bottom:50px;
}
.mb60{
    margin-bottom:60px;
}
.mb70{
    margin-bottom: 70px;
}
.mb80{
    margin-bottom: 80px;
}
.mb100{
    margin-bottom: 100px;
}
.mb120{
    margin-bottom: 120px;
}
.mb130{
    margin-bottom: 130px;
}
.mb160{
    margin-bottom: 160px;
}
.mb200{
    margin-bottom: 200px;
}


.ml0{
    margin-left:0;
}
.ml10{
    margin-left: 10px;
}
.ml20{
    margin-left: 20px;
}
.ml30{
	margin-left: 30px;
}
.ml40{
	margin-left: 40px;
}
.ml50{
    margin-left: 50px;
}

.mr10{
    margin-right: 10px;
}
.mr20{
    margin-right: 20px;
}
.mr30{
    margin-right: 30px;
}
.pt25{
    padding-top: 25px;
}
.pt40{
    padding-top: 40px;
}
.pt50{
    padding-top: 50px;
}
.pt60{
    padding-top: 60px;
}
.pt70{
    padding-top: 70px;
}
.pt80{
    padding-top: 80px;
}
.pt100{
    padding-top: 100px;
}

.pt150{
    padding-top: 150px;
}
.pb10{
    padding-bottom: 10px;
}
.wrapppb20{
    padding-bottom: 20px;
}
.pb20{
    padding-bottom: 20px;
}
.pb25{
    padding-bottom: 25px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}
.pb50{
    padding-bottom: 50px;
}
.pb60{
    padding-bottom: 60px;
}
.pb80{
    padding-bottom: 80px;
}
.pb90{
    padding-bottom: 90px;
}
.pb100{
    padding-bottom: 100px;
}
.pb120{
    padding-bottom: 120px;
}
.pb130{
    padding-bottom: 130px;
}
.pb150{
    padding-bottom: 150px;
}

.pl5{
    padding-left: 5px;
}

.pl10{
    padding-left: 10px;
}

.pl30{
    padding-left: 30px;
}

.pl20{
    padding-left: 20px;
}
.pl50{
    padding-left:50px;
}
.pl60{
    padding-left:60px;
}
.pl70{
    padding-left:70px;
}
.pl25{
    padding-left: 25px;
}

.pl110{
    padding-left: 110px;
}

.pr30{
    padding-right: 30px;
}
.pr70{
    padding-right: 70px;
}


@media screen and (max-width: 768px) {

    /*margin*/
    .mt15{
        margin-top:10px;
    }
    .mt30{
        margin-top:15px;
    }
    .mt40{
        margin-top:20px;
    }
    .mt50{
        margin-top:25px;
    }
    .mt60{
        margin-top:30px;
    }
    .mt80{
        margin-top:40px;
    }
    .mt100{
        margin-top:50px;
    }
    .mb10{
        margin-bottom:5px;
    }
    .mb15{
        margin-bottom:10px;
    }
    .mb20{
        margin-bottom: 10px;
    }
    .mb30{
        margin-bottom: 15px;
    }
    .mb40{
        margin-bottom: 20px;
    }
    .mb50{
        margin-bottom:25px;
    }
    .mb60{
        margin-bottom:30px;
    }
    .mb70{
        margin-bottom: 35px;
    }
    .mb80{
        margin-bottom: 40px;
    }
    .mb100{
        margin-bottom: 50px;
    }
    .mb120{
        margin-bottom: 60px;
    }
    .mb130{
        margin-bottom: 65px;
    }
    .mb160{
        margin-bottom: 80px;
    }
    
    /*sp調整タグ*/
    .mb05sp{
        margin-bottom: 5px;
    }
    .mb10sp{
        margin-bottom: 10px;
    }
    .mb25sp{
        margin-bottom: 25px;
    }
    .mb50sp{
        margin-bottom: 50px;
    }
    .mt30sp{
        margin-top: 30px;
    }
    .mt60sp{
        margin-top: 60px;
    }
    .minwidth90{
        min-width: 90px;
    }

    /*padding*/
    
    .pt25{
        padding-top: 15px;
    }
    .pt40{
        padding-top: 20px;
    }
    .pt50{
        padding-top: 25px;
    }
    .pt60{
        padding-top: 30px;
    }
    .pt70{
        padding-top: 35px;
    }
    .pt80{
        padding-top: 40px;
    }
    .pt100{
        padding-top: 50px;
    }
    .pt150{
        padding-top: 75px;
    }
    .pb20{
        padding-bottom: 10px;
    }
    .pb25{
        padding-bottom: 13px;
    }
    .pb30{
        padding-bottom: 15px;
    }
    .pb40{
        padding-bottom: 20px;
    }
    .pb50{
        padding-bottom: 25px;
    }
    .pb60{
        padding-bottom: 30px;
    }
    .pb80{
        padding-bottom: 40px;
    }
    .pb90{
        padding-bottom: 45px;
    }
    .pb100{
        padding-bottom: 50px;
    }
    .pb120{
        padding-bottom: 60px;
    }
    .pb130{
        padding-bottom: 75px;
    }

    .pb150{
        padding-bottom: 75px;
    }

    /*sp調整タグ*/

    .pt25sp{
        padding-top: 25px;
    }
    .pb25sp{
        padding-bottom: 25px;
    }
    .pl30{
        padding-left: 15px;
    }
    .pr30{
        padding-right: 15px;
    }
    .pl20sp{
        padding-left: 20px;
    }
    
    /*marigin-left sp調整*/
    .ml0sp{
        margin-left:0;
    }
    .pl0sp{
        padding-left: 0;
    }

    /*width sp100%*/
    .w100sp{
        width: 100%;
        height: auto;
    }
}





/*スマホメニュー
-----------------------------------------------------------------*/

@media screen and (min-width: 1101px) {
    #nav_toggle,
    #spnavi,
    #spnavi .wrapper,
    .spnavi-list-flex,
    #spnavi .header-logo,
    #spnavi .header-contact .header-tel{
        display: none;
    }
}
/*@media screen and (max-width: 768px) {*/
@media screen and (max-width: 1100px) {
    
	#spnavi{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		background: #fff;
		left: 0;
		z-index:90;
        padding: 0 0 30px;
	}
    
	#spnavi > ul{
		display: block;
		margin: 0 auto;
		width: 95%;
	}
	#spnavi > ul > li{
		margin: 0 auto;
		text-indent:10px;
		/*border-bottom: 1px solid #525252;*/
        padding: 5px 0;
	}
	
	/*#spnavi > ul > li:first-child{
		border-top: 1px solid #525252;
	}*/
	
	#spnavi > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.4rem;
		text-decoration: none;
	}

    #spnavi > ul > li > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0 3px 20px;
		font-size:1.4rem;
		text-decoration: none;
	}

	#spnavi > ul li a:hover{
		text-decoration:none;
		opacity:.7;
	}

    /*#spnavi h1 > a > img{
        width: 150px;
        height: auto;
    }*/
	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width:17px;
		height:16px;
		position:absolute;
		top:18px;
		/*top:35px;*/
		right:20px;
		z-index: 100;
		text-align: center;
		
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}

    .top-page #nav_toggle span{
        background: #ea5413;
    }
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:6px;
	}
	#nav_toggle span:nth-child(3){
		top:12px;
	}
	
	#nav_toggle p.togglemenu{
		background:none;
		color:#ed6103;
		font-size:8px;
		padding-top:19px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 8px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
            background: #ea5413;
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 8px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
            background: #ea5413;
		}
	
	.header-companylogo_sp{
		position:absolute; 
		top:20px;
		left:10px;
		z-index:99;
		/*top:-27px; 
		right:-10px;*/
	}

    .spnavi-arrow:before{
        content: '';/*何も入れない*/
        display: inline-block;/*忘れずに！*/
        width: 10px;/*画像の幅*/
        height: 10px;/*画像の高さ*/
        background-image: url(../img/spnavi-arrow.png);
        background-size: contain;
        /*vertical-align: middle;*/
        margin-right:5px;
    }
    .spnavi-list-flex{
        column-gap: 10px;
        max-width: 400px;
        margin: 0 auto;
    }

    .spnavi-list-item{
        width: calc(50% - 10px/2);
        padding-left: 10%;
    }

    .spnavi-list-item .header-sub-nav{
        flex-direction: column;
    }

    .spnavi-list-item .header-sub-nav li a{
        font-family: "RocknRoll One", sans-serif;
        font-size: 1.4rem;
        font-weight: 400;
        font-style: normal;
    }
}




/*スマホメニュー終わり
-----------------------------------------------------------------*/	


/*pconly sponly切り替え　スマホtel処理
-----------------------------------------------------------*/

@media screen and (min-width: 1024px) {
	.w1024only{
		display: none;
	}
}

@media screen and (max-width: 1024px) {
    .w1024only{
        display: block;
        position:relative;
        z-index: 2;
    }
}

@media screen and (min-width: 769px) {
	.sponly{
		display: none;
	}
}


@media screen and (max-width: 768px) {
    .pconly{
        display: none;
    }
    .sponly{
        display: block;
        position:relative;
        /*z-index: 2;*/
    }
    /*a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }*/

}
