html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-size: 1.7rem; 
	margin: 0;
}
@media (max-width: 600px) {
body {
  font-size: 1.6rem; 
	margin: 0;
}
}
/* ふわっと登場するアニメーション */
/* .op_fade {
  animation: fadein 3s ease-out forwards;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.fadeIn {
    transform: translate3d(0, -10px, 0);
    transition: 1s;
    opacity: 0;
}
@keyframes fadein {
  0% {
     opacity: 0
  }
  100% {
     opacity: 1
  }
} */

p,div,li,ul,a{
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: var(--line-height-default, 1.8);
	letter-spacing: var(--ltr-space-default, 0.08em);
    font-feature-settings: "palt";
/* 	color: var(--clr-body, #7a7a7a); */
	    -webkit-font-smoothing: antialiased;
    word-break: break-word;
}

.mtp100{
	margin-top: clamp(60px, 6vw, 100px)!important;
}
.mtp80{
	margin-top: clamp(40px, 4vw, 80px)!important;
}
.mtp50{
	margin-top: clamp(30px, 4vw, 50px)!important;
}
.mtp30{
    margin-top: clamp(15px, 4vw, 30px)!important;
}
.mtp15{
    margin-top: clamp(8px, 4vw, 15px)!important;
}

.mbp80{
	margin-bottom: clamp(40px, 4vw, 80px)!important;
}
.mbp50{
	margin-bottom: clamp(30px, 4vw, 50px)!important;
}
.mbp30{
	margin-bottom: clamp(15px, 4vw, 30px)!important;
}
.mbp15{
	margin-bottom: clamp(8px, 4vw, 15px)!important;
}

.sp_br{
	display:none;
}

@media (max-width: 600px) {
p,div,li,ul,a{
  font-size: 1.6rem; 
	margin: 0;
}
}

/*footer*/

.footer_company_logo {
    width: fit-content;
    margin: 0 auto 20px;
	max-width: 200px;
}

.footer_company {
    text-align: center;
    margin: 0px auto 0px;
    width: fit-content;
}

.contact_num {
    display: flex;
    gap: 10px;
    justify-content: center;
}


@media (max-width: 600px) {
.contact_num {
    gap: 5px;
}	
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* アイコン間のスペースを調整 */
    padding-top: 20px;
    padding-bottom: 60px;
}

.icon-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* 円の大きさ */
    height: 60px; /* 円の大きさ */
    border-radius: 50%; /* 円形にする */
    background-color: #a2cfc8; /* 背景色を指定 */
    text-decoration: none; /* 下線を削除 */
}

.icon-container a img {
    width: 50%; /* アイコンサイズを調整 */
    height: auto;
}

.fnav {
    display: flex;
    justify-content: center;
	font-size: 90%;
}

.fnav--menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.fnav--menu > li {
    flex: 1 1 15%;
    min-width: 150px;
    max-width: 200px;
}

.fnav--menu > li a {
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.fnav--menu > li a:hover {
    text-decoration: underline;
}

.sub-menu {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.sub-menu li {
    margin-bottom: 5px;
}

.sub-menu li a {
font-weight: normal;
    text-decoration: none;
    line-height: 1.5;
    padding-top: 5px;
    font-size: 95%;
}

.sub-menu li a:hover {
    text-decoration: underline;
}

.footer_banners {
    display: flex; /* 横並びに配置 */
    justify-content: center; /* 中央揃え */
    flex-wrap: wrap;
    gap: 10px; /* バナー間のスペースを調整 */
    margin: 80px auto 0px; /* 上下に余白を設定 */
    max-width: 1000px;
}

.footer_banners a {
    flex: 1 1 calc(25% - 10px); /* バナーの幅を均等に */
    min-width: 150px; /* 最小幅を設定 */
    display: block; /* リンク全体をクリック可能に */
}

.footer_banners img {
    max-width: 100%; /* バナーの横幅を親要素に合わせる */
    height: auto; /* 縦横比を維持 */
    border-radius: 5px; /* バナーの角を丸める（必要に応じて調整） */
}

.footer_box {
    background-color: #d4ece8;
    padding-top: 50px;
}

.footer_md {
    background-color: #d4ece8; /* 背景色を修正 */
    padding: 20px;
}
@media (max-width: 600px) {
.footer_banners {
    margin: 80px auto 50px;
}	
}
/******************************************************************
 * ヘッダー
******************************************************************/
/* PC
-----------------------------------------------------------------*/
 .top-mv-head {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 20px;
    z-index: 50;
  }


  @media screen and (max-width: 1500px) {
    .top-mv-head {
      display: none;
    }
  }
  .top-mv-logo {
    display: flex;
    align-items: center;
width: 220px;
    height: 100px;
    padding-left: 20px;
	     margin-top: -20px;

  }
  .top-mv-logo img {
    width: 340px;
  }



.header-nav-pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
/*   height: 100px; */
    height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  z-index: 999;
  opacity: 0;
  transform: translateY(-100px);
  padding: 3px;
  transition: all 0.5s ease;
}
@media (max-width: 1399px) {
  .header-nav-pc {
    padding-left: 20px;
  }
	.header-nav-pc .c-globalmenu-list {
        gap: 1vw;
        justify-content: center;
/*         margin-right: 30%; */
    }
}
@media screen and (max-width: 1200px) {
  .header-nav-pc {
    display: none;
  }
}
.header-nav-pc .header-logo {
  display: flex;
  align-items: center;
  width: 334px;
}
@media (max-width: 1699px) {
  .header-nav-pc .header-logo {
    width: 250px;
  }
}
@media (max-width: 1399px) {
  .header-nav-pc .header-logo {
    width: 200px;
  }
}
@media (max-width: 1090px) {
  .header-nav-pc .header-logo {
    width: 170px;
  }
}
.header-nav-pc .c-globalmenu {
  width: unset;
/*   height: 100px; */
    height: auto;
  padding: 0;
  margin: 0 0 0 50px;
  border-bottom: 0;
	    width: 70%;
}
@media (max-width: 1299px) {
  .header-nav-pc .c-globalmenu-list {
    width: 700px;
  }
  .header-nav-pc .c-globalmenu-list li a .ttl-en {
    font-size: 14px;
  }
  .header-nav-pc .c-globalmenu-list li a .ttl-jp {
    font-size: 17px;
  }
}
.header-nav-pc .c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child {

}
.header-nav-pc .header-tel {
  width: 260px;
}
@media (max-width: 1199px) {
  .header-nav-pc .header-tel {
    width: 200px;
  }
}
.header-nav-pc.fixed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
.footer_company_logo {
    max-width: 230px;
}	
}

/* SP
-----------------------------------------------------------------*/
.header-nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #FFF;
  padding-left: 10px;
  z-index: 9999;
}
@media screen and (min-width: 1700px) {
  .header-nav-sp {
    display: none;
  }
}
.header-nav-sp .header-logo {
  position: relative;
  width: 173px;
}
.header-nav-sp .navToggle {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #a5d3cc;
  cursor: pointer;
  text-align: center;
  z-index: 9999;
}
.header-nav-sp .navToggle span {
  display: block;
  position: absolute;
  width: 26px;
  cursor: pointer;
  border-bottom: solid 2px #fff;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header-nav-sp .navToggle span:nth-child(1) {
  top: 12px;
}
.header-nav-sp .navToggle span:nth-child(2) {
  top: 18px;
}
.header-nav-sp .navToggle span:nth-child(3) {
  top: 24px;
}
.header-nav-sp .navToggle::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  content: "MENU";
  font-size: 10px;
  color: #FFF;
  font-weight: 500;
  margin: auto;
}
.header-nav-sp .navToggle.active span {
  width: 26px;
  border-bottom: solid 2px #fff;
}
.header-nav-sp .navToggle.active span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-nav-sp .navToggle.active span:nth-child(2) {
  opacity: 0;
  border-bottom: none;
}
.header-nav-sp .navToggle.active span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-nav-sp .globalMenu {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  width: 90%;
  height: 100%;
  line-height: 1.45;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  padding: 20vw 3vw 6vw;
  transition: all 0.6s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1001;
    max-width: 800px;
}
.header-nav-sp .globalMenu.active {
  opacity: 1;
  pointer-events: all;
}
.header-nav-sp .globalMenu.active .menu-wrap .menu-list {
  animation-name: fadeleft;
  animation-duration: 1s;
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header-nav-sp .globalMenu .menu-wrap .menu-list {
  border-top: 1px dotted #727171;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li {
  font-size: 16px;
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li a {
  position: relative;
  display: block;
  border-bottom: 1px dotted #727171;
  padding: 12px 0;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li a::after {
  position: absolute;
  display: flex;
  align-items: center;
  content: "▶";
  right: 1vw;
  top: 0;
  bottom: 0;
  font-size: 10px;
  color: #9bd5cc;
  margin: auto;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li .menu-child {
  display: none;
  background: #9bd5cc;
  padding: 10px;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li .menu-child li a {
  color: #FFF;
  border-bottom: 0;
  padding: 5px 0 5px 10vw;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li .menu-child li a::after {
  content: "▶︎";
  align-items: center;
  left: 10px;
  right: unset;
  top: 0;
  bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF;
  font-weight: bold;
  margin: auto;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li.accord a::after {
  content: "▼";
  align-items: center;
  right: 1vw;
  top: 0;
  bottom: 0;
  color: #9bd5cc;
  margin: auto;
  transition: all 0.3s ease;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li.accord a.active {
  border-bottom: none;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li.accord a.active::after {
  position: absolute;
  right: 1vw;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
}
/* c-pagetop
-----------------------------------------------------------------*/
/* @media screen and (max-width: 960px) {
  .c-pagetop {
    display: none;
  }
} */

/* c-floatbnr
-----------------------------------------------------------------*/
.c-floatbnr {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.c-floatbnr .c-contact {
  width:80%;
}
.c-floatbnr .c-contact-item {
  width: 50%;
}
.c-floatbnr .c-contact-item.reservation {
  margin-right: 0;
}
.c-floatbnr .c-pagetop {
  opacity: 1;
  visibility: visible;
}
.insta img{
    width: 80px;
    height: auto;
    margin-bottom: 3px;
    filter: drop-shadow(0px 2px 5px rgba(20, 20, 20, 0.1));
}
/* @media screen and (min-width: 961px) {
  .c-floatbnr {
    display: none;
  }
} */

/******************************************************************
 * parts
******************************************************************/
/* c-globalmenu
-----------------------------------------------------------------*/
.c-globalmenu {
  height: 100px;
}

.c-globalmenu-list {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 1.5vw;
}

@media (max-width: 1700px) {
/* .c-globalmenu-list {
    gap: 1vw;
    justify-content: flex-end;
    margin-right: 30%;
} */
.top-mv-head .c-globalmenu-list{
	        margin-right: 0;
}
}
@media (max-width: 1039px) {
  .c-globalmenu-list {
    width: calc(100% - 40px);
  }
}
.c-globalmenu-list a {
  transition: all 0.3s ease;
}
.c-globalmenu-list a:hover {
  opacity: 0.6;
}
.c-globalmenu-list li {
  display: flex;
  height: 100%;
  text-align: center;
font-family: dnp-shuei-mgothic-std,"Zen Maru Gothic", sans-serif;
    width: max-content;
}
.c-globalmenu-list li a {
  display: flex;
  flex-direction: column;
    font-size: 1.7rem;
    position: relative;
    z-index: 100;	
}
@media screen and (max-width: 1700px) {
	.c-globalmenu-list{
	        display: none;	
	}
}
@media (max-width: 1700px) {

.c-globalmenu-list li a {
    font-size: 1.6rem;
}
}
.c-globalmenu-list li a .ttl-en {
    color: #b8ded8;
    font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
    font-size: 90%;
    line-height: 1.4;

}
.c-globalmenu-list li a .ttl-jp {
  color: #666;
  letter-spacing: 0.05em;
}
@media (max-width: 1799px) {
  .c-globalmenu-list li:last-child {
    margin-right: 0;
  }
}
.c-globalmenu-list li.globalmenu-drop {
  position: relative;
	    z-index: 1000;
}

.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child {
    position: absolute;
    top: 100%; /* 親要素の下部に配置 */
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden; /* デフォルトで非表示 */
    opacity: 0; /* 透明 */
    width: 250px;
    background: #9bd5cc;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* スムーズな表示 */
    z-index: 2; /* 重なり順を調整 */
}

.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li {
  width: 100%;
  font: 18px dnp-shuei-gothic-kin-std, sans-serif;
  border-bottom: 1px solid #FFF;
  margin-right: 0;
}

.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li a {
  display: block;
  position: relative;
  width: 100%;
  color: #FFF;
  padding: 8px 0 8px 8px; /* パディングを調整 */
}

.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li a::before {
  position: absolute;
  content: "▶︎";
  display: flex;
  align-items: center;
  font-size: 10px;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}

.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li:last-child {
  border-bottom: 0;
}

.c-globalmenu-list li.globalmenu-drop:hover .globalmenu-drop-child {
  visibility: visible; /* 表示 */
  opacity: 1; /* 不透明 */
  top: 100%; /* 親要素の下部に位置 */
}

.c-globalmenu-list li.globalmenu-drop > a {
    position: relative; /* 矢印を配置するために必要 */
    padding-right: 20px; /* 矢印のスペースを確保 */
}

.c-globalmenu-list li.globalmenu-drop > a::after {
content: "▼";
    position: absolute;
    right: 0px;
    top: 23%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #b8ded8;
	transition: transform 0.3s ease; /* アニメーション */
}

/* ホバー時（メニューを開いたとき）に矢印を下にずらす */
.c-globalmenu-list li.globalmenu-drop:hover > a::after {
     transform: translateY(-50%) translateY(3px); /* 動き */
}



/* c-contact
-----------------------------------------------------------------*/
.c-contact {
  display: flex;
align-items: center;
    width: 100%;
    justify-content: flex-end;
    max-width: 450px;
	    gap: 5px;
}
.c-contact-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 55px;
    color: #FFF;
    padding-right: 10px;
    transition: all 0.3s ease;
    border-radius: 80px;
    padding: 15px;
	
}
.generalbtn .c-contact{
	 width: 100%;
	    max-width: initial;
    justify-content: flex-start;
	    gap: 7px;
}
.tell_num_time{
    font-size: 80%;	
}
.tell_num_time p {
    line-height: 1.3;
    color: #a1cec7;
}
@media screen and (max-width: 750px) {
  .c-contact-item {
    height: 56px;
  }
}
.c-contact-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
color:#fff;
}
.tell_num{
     font-size: clamp(14px, 1.2vw, 20px);
	font-weight:600;
	color:#a8d7d0;
}
.c-contact-item__txt {
  text-align: center;
  letter-spacing: 0.05em;
}
.c-contact-item__txt .txt-sub {
  font: 15px "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .c-contact-item__txt .txt-sub {
    font-size: 13px;
  }
}
.c-contact-item__txt .txt-main {

  font-weight: 500;
    font-size: clamp(9px, 2vw, 17px);	
    color: #fff;	
}
@media screen and (max-width: 750px) {
  .c-contact-item__txt .txt-main {
    font-size: 13px;
  }
}

.c-contact-item.reservation .c-contact-item__img {
  width: 32px;
  margin-right: 20px;
}
.c-contact-item.monshinbtn{
	  background:#73ccbd;
}
@media screen and (max-width: 750px) {
  .c-contact-item.reservation .c-contact-item__img {
    width: 25px;
    margin-right: 10px;
  }
}
.c-contact-item.tel {
  background:#e4ad8c;
    border: solid 1px #ccc;
       z-index: 60;
}
.c-contact-item.tel .c-contact-item__img {
/*   width: 22px; */
	    width: 32px;
  margin-right: 10px;
}
.c-contact-item.tel02 .c-contact-item__img {
  max-width: 22px; 
}
@media screen and (max-width: 750px) {
  .c-contact-item.tel .c-contact-item__img {
    width: 20px;
    margin-right: 4px;
	          display: flex;
  }
}
.c-contact-item:hover {
  opacity: 0.7;
}

/* c-pagetop
-----------------------------------------------------------------*/
.c-pagetop {
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  transition: all 1s;
  z-index: 1000;
}
/* @media screen and (max-width: 750px) {
  .c-pagetop {
    display: none;
  }
} */
.c-pagetop.active {
  opacity: 1;
  visibility: visible;
}

.tel_box img{
    width: 24px;
	    margin-right: 10px;
}
.tel_box{
	color:#476db1;
	font-weight:500;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
	margin-top: 10px;
    display: block;
}

/* -----------------------------------------追随バナー -----------------------------------------*/
.fixed-buttons {
    position: fixed;
    right: 0;
    top: 30%;
    transform: translateY(-30%);
    display: flex;
    flex-direction: column;
    gap: 10px;
	z-index:50;
}
@media screen and (max-width: 600px) {
	.fixed-buttons {
		display:none;
	}
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 250px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
color: #555;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
/* .button:before{
	    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
} */

/* レンタルボタンのスタイル */
.rental {
	position:relative;
    border: 1px solid #A0D9CC;
	background: linear-gradient(to bottom, #b8ded8 5%, #e0f4f1 5%);
	    writing-mode: vertical-rl;
}
.rental:before {
    content: '';
    position: absolute;
    top: 30px;
    background-image: url(../img/right_btn_blue.png);
width: 40px;
height:22px;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
}
.rental:after {
    content: '';
    position: absolute;
    bottom: 30px;
    background-image: url(../img/right_btn_blue_ren.png);
width: 40px;
height:22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
}
/* 購入ボタンのスタイル */
.purchase {
		position:relative;
    background-color: #F4E8D8; /* 淡いベージュ */
    border: 1px solid #D9C3A0;
		background: linear-gradient(to bottom, #e7cbb1 5%, #f6eade 5%);
	    writing-mode: vertical-rl;
}
.purchase:before {
	    content: '';
    position: absolute;
    top: 30px;
    background-image: url(../img/right_btn_red.png);
width: 40px;
height:22px;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
}
.purchase:after {
    content: '';
    position: absolute;
    bottom: 30px;
    background-image: url(../img/right_btn_red_cart.png);
width: 40px;
height:22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
}
/* ホバー時の効果 */
.button:hover {

}
/*------------------ SP時フッターメニュー ------------------ */
/* c-floatbnr
-----------------------------------------------------------------*/
@media screen and (min-width: 601px) {
  .sp {
    display: none !important;
  }
}
.c-floatbnr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding: 5px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.c-floatbnr__btns {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.c-floatbnr__btn {
  width: 100%;
  height: 100%;
  max-width: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  line-height: 1;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(121, 121, 121, 0.2);
}
.c-floatbnr__btn--info {
background: linear-gradient(to bottom, #b8ded8 15%, #e0f4f1 15%);
    border: 1px solid #A0D9CC;
}
.c-floatbnr__btn--campus {
background: linear-gradient(to bottom, #e7cbb1 15%, #f6eade 15%);
 border: 1px solid #D9C3A0;
}
.c-floatbnr .c-pagetop {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: block;
  position: unset;
  visibility: visible;
  opacity: 1;
  background-size: 20px 12px;
}
@media screen and (max-width: 1000px){
	.c-floatbnr__btns{
		height:60px;
		display:flex !important;
	}
		.c-floatbnr__btns img{
        max-width: 4vw;
        min-width: 20px;
	}
	.c-floatbnr__btn{
		        padding: 5px;
	}

}
@media screen and (max-width:600px){
	.c-floatbnr__btns{
		height:45px;
		justify-content: end;
	}
	.c-floatbnr__btns a{
    max-width: 200px;
	}
	.c-floatbnr__btn{
		font-size:90%;
		padding: 5px 0px 0px;
	}

}
/* ---------------------------pagetop---------------------------- */
.c-pagetop {
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* 画像のスタイル */
.c-pagetop a img {
    width: 24px; /* 矢印のサイズ */
    height: auto;
}



/* スクロール時にのみ表示（100px以上スクロールしたら表示） */
.c-pagetop.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
@media screen and (max-width:600px){
.c-pagetop {
    width: 50px;
	height: 50px;
        bottom: 55px;
	}	
}

/* 外部リンクアイコン */

.link-icon {
  display: inline-block;
  width: 15px; /* 画像の適切な幅 */
  height: 15px; /* 画像の適切な高さ */
  margin-left: 6px;
  background-image: url("https://unicom-co.store/wp-content/themes/unicom/img/linkicon_w.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.redlink{
  background-image: url("https://unicom-co.store/wp-content/themes/unicom/img/linkicon_r.png");	
}
/* ----------------------------x----------------------------- */

