

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
.color-1 {
	color: #30d23 !important;
}

.bg-1 {
	background-color: #bd4646 !important;
}

:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #bd4646;
  --primary-color2:               #e9505b;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #3e3a39;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #212529;

  --body-font-family:           'Zen Kaku Gothic New', sans-serif;

  --h1-font-size:               72px;
  --h2-font-size:               42px;
  --h3-font-size:               36px;
  --h4-font-size:               32px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                15px;
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;

  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
	font-size: 0.8rem;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: 1.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: 1.5em;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 8px;
  padding-left: 8px;
}

.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: var(--dark-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}

/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}

/*---------------------------------------
  NEWS & EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #c30d23;
}

.news-image-hover-primary::after {
  background: #c30d23;
}

.news-image-hover-success::after {
  background: #c30d23;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--primary-color);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 275px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 25px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 15px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
	
  .button2 a {
	  margin-top: 20px;
	  width: 50%;
	}
	
.visual {
	position: relative;
	width: 100%;
	height: 100vh;
}
.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}
	

	.mb-50-sp {
		margin-bottom: 50px !important;
	}
	
	.form-control {
		font-size: 0.8rem;
	}
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}

/*---------------------------------------
  TUIKA               
-----------------------------------------*/

.bg-b {
	background-color: black;
	display: inline-block;
}

.bg-r {
	background-color: #c30d23;
}

.bg-b img {
	display: block;
	opacity: 0.3;
}

.text-red {
}

.mb-15 {
	margin-bottom: 150px !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mt-150 {
	margin-top: 150px !important;
}

.nav-omousikomi {
	display: block;
    padding: 0.5rem 1rem;
    color: #3e3a39;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}


/* table01 */
#table01 {
  border-collapse: collapse !important;
  margin: 0 auto;
  width: 90%;
  color: #333333;
}

#table01 tr {
  border-bottom: 1px solid #333333 !important;
}

#table01 th,
#table01 td {
  padding: 32px 0;
  border: none;
}

#table01 th {
  width: 30%;
  text-align: left !important;
}

#table01 ul {
	margin-top: 15px;
	padding-left: 0px !important;
}

#table01 li {
	list-style: decimal-leading-zero !important;
	text-align: left !important;
	list-style-position: inside !important;
}

.mu-service-content-single {
    background-color: #f8f8f8;
    display: inline;
    float: left;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 25px 10px;
    width: 100%;
}

.mu-service-content-single h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.mu-service-icon-box {
    font-size: 30px;
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    line-height: 75px;
}

.mu-resume-btn, .mu-service-icon-box {
    border: 2px solid #c30d23;
    color: #c30d23;
}

.button1 a {
    background: var(--dark-color);
    border: none;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    padding: 16px;
    transition: all 0.6s ease-out;
}

.button1 a:hover {
    background: var(--primary-color);
}

.button2 a {
    background: var(--dark-color);
    border: none;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    padding: 10px;
    transition: all 0.6s ease-out;
}

.button2 a:hover {
    background: var(--primary-color);
}

.button3 a {
    background: var(--primary-color);
    border: none;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    padding: 16px;
    transition: all 0.6s ease-out;
}

.button3 a:hover {
    background: var(--primary-color2);
}

.hero {
    height: 100vh;
}

@media handheld, only screen and (max-width: 1024px) {

	
	  #table01 th,
	  #table01 td {
		width: 100%;
		display: block;
		padding: 20px 0;
	  }

	  #table01 th {
		width: 100%;
	  }

	  #table01 td {
		padding-top: 0;
	  }
	
	.dis-non2 {
		display: none !important;
	}
	
	.br-sp {
		display: none !important;
	}
	
	.fotter-list h6 {
		margin: 25px auto !important;
		text-align: center;
	}
	
	
	.text-center-sp {
		margin-left: auto !important;
		margin-right: auto !important;
	}
	
	.mt-sp {
		margin-top: 50px;
	}
	
	.logo {
		height: 30px !important;
	}
	.lh-ex-sp {
		line-height: 100px !important;
	}
	
	.s-btn h3{
		font-size: 18px !important;
		color: #fff;
		padding-top: 1rem !important;
		margin-bottom: 0rem;
		letter-spacing: 0.1rem;
	}

	.s-btn h4{
		font-size: 15px !important;
		color: #fff;
		padding-top: 0.5rem;
		margin-bottom: 0rem;
		letter-spacing: 0.1rem;
	}

	.s-btn-4-1 {
		text-indent: 1rem;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 23px;
	}

	.s-btn-4-2 {
		font-size: 27px !important;
		font-weight: bold;
	}
	
	.s-btn-4-2-2 {
		font-size: 15px !important;
		font-weight: bold;
	}
	
	.s-bg {
		bottom: 0 ;
		width: 100% !important;
		height: 120px !important;
		position: fixed;
		z-index: 99999999;
	}

	.s-btn {
		text-align: center;
		background-color: #52b783 !important;
		height: 120px !important;
	}
	
	.s-btn2-br-sp {
		display: none !important;
	}
	
	.form-label {
		font-size: 11px;
	}
	
	.contact-form .form-control {
		font-size: 11px;
	}
	
	.f-r-sp {
		display: flex;
		justify-content: flex-end !important;
		padding-right: calc(var(--bs-gutter-x) / 2);
		margin-top: var(--bs-gutter-y);
	}
	
	.f-r-sp-2 {
		padding-left: calc(var(--bs-gutter-x) / 2);
		flex: 0 0 auto;
        width: 50%;
	}
	
}

@media screen and (min-width:1024px) {
	.br-pc {
		display: none;
	}
	
	.syoukai-ex {
		display: flex;
	}
	
	.mr-pc {
		margin-right: 25px;
	}
	
	.ml-pc {
		margin-left: 50px;
	}
	
	.cen-ex {
		width: 80%;
		margin: 0 auto;
	}
	
	.ml-50-pc {
		margin-left: 50px !important;
	}
	
	.s-btn2 {
		padding: 5px;
		width: 20% !important;
		flex-grow: 1;
	}
	
	.s-btn2-br-sp {
		padding: 5px;
		width: 60% !important;
		flex-grow: 1;
		background-color: transparent !important;
	}
	
	.pb-400-pc {
		padding-bottom: 500px !important;
	}
	
	.f-r-sp {
		flex: 0 0 auto;
        width: 33.3333333333%;
	}
	
	

	.insta_list li{
		position: relative;
		width: 100%;
	}
	
	.insta_list img{
	  width: 25% !important;
	  height: auto !important;
	  object-fit: cover;
	}
	
	.insta_list p{
	  margin-top: 25px;
	  margin-left: 25px;
	  width: 70%;
	}
	
	.square-content {
		display: flex;
	}
	
	.insta_list li::before {
		padding-top: 10% !important;
	}
	
}

.logo {
	height: 35px;
}

.logo-ex {
	height: 25px !important;
}

.scroll-box {
  width: 100%;                /* 横幅を200pxに指定 */
  height: 200px;               /* 横幅を200pxに指定 */
  border: 1px solid #ced4da;      /* わかりやすくボーダーを引く */
  overflow-y: scroll;          /* 縦方向にスクロール可能にする */
}

.mimamori {
	margin: 0 auto;
	text-align: center;
}

.mimamori img {
	margin: 30px auto;
	width: 50%;
	height: auto;
	text-align: center;
}

.fotter-list {
	background-color: var(--dark-color);
	border-radius: 15px;
	height: 70px;
	margin: 10px 20px;
}

.fotter-list h6 {
	margin: 20px auto;
	text-align: center;
}

.fotter-list h6 a {
	color: #fff;
	margin: 0 auto;
	text-align: center;
}

.cen {
	justify-content: center;
}

.plr0 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.f-link {
	color:#fff;
	font-size: 10px;
}

.f-link a {
	color:#fff;
	font-size: 10px;
}

.syoukai-img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.mu-service-content-single p {
	text-align: left;
}

@media (min-width: 1200px){
	.container {
		max-width: 1920px !important;
	}
}

.soudan th {
	font-size: 25px;
}

.s-bg {
	bottom: 0 ;
	width: 100% !important;
	height: 130px;
	position: fixed;
	z-index: 99999999;
}

.s-btn {
	text-align: center;
	background-color: #ba354b !important;
	height: 130px;
	display: flex;
	width: 100% !important;
}

.s-btn2 {
	padding: 5px;
	width: 50%;
	flex-grow: 1;
}

.s-btn-center {
	text-align: center !important;
	margin: 0 auto !important;
	padding: 0 auto !important;
}

.s-btn h3{
	font-size: 23px;
	color: #fff;
	padding-top: 1.5rem;
	margin-bottom: 0rem;
	letter-spacing: 0.1rem;
}

.s-btn h4{
	font-size: 20px;
	color: #fff;
	padding-top: 0.5rem;
	margin-bottom: 0rem;
	letter-spacing: 0.1rem;
}

.s-btn-4-1 {
	text-indent: 1rem;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 23px;
}

.s-btn-4-2 {
	font-size: 34px;
	font-weight: bold;
}

.mr-ex {
	margin-right: 1rem !important;
}

.pb-100 {
	padding-bottom: 100px !important;
}

.bg-r2 {
	background: var(--primary-color) !important;
}

.bg-r2 a {
	color: #fff !important;
}

.bg-r2 a:hover{
	color: #ba354b !important;
}

.bg-g3 {
	background: #4cc764 !important;
}

.bg-g3 a {
	color: #fff !important;
}

.bg-rg3 a:hover{
	color: #ba354b !important;
}

.site-footer p {
	color: #fff !important;
	font-size: 12px;
}



.insta_list{
    display: flex;
    flex-wrap: wrap;
    gap: 150px 20px;
    margin: 20px 0;
	padding-left: 0px !important; 
}

@media screen and (max-width: 932px){
    .insta_list li{
		position: relative;
        width: calc((100% - 20px)/2);
    }
	
	.insta_list{
		gap: 200px 20px !important;
	}
	
	.insta_btn{
		margin: 200px auto 50px auto !important;
	}
	
	.insta_list img{
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}
	
	.insta_list p   {
	  overflow: scroll;
	  height: 100px !important;;
	}
	
	.about-image, .team-image {
		width: 100%;
		height: 100%;
		max-height: 635px;
		min-height: 300px;
		object-fit: cover;
	}
	
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta_list p{
  margin-top: 25px;
}


.insta_btn{
    background-color: #bd4646;
    padding: .5em 1em;
    width: fit-content;
    margin: 150px auto 50px auto;
    cursor: pointer;
    transition: .3s
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
}

.insta_btn:hover{
    background-color: #999;
}

.blog ul {
	list-style: none !important;
}

.mg-0-a  {
	margin: 0 auto !important;
}

.lh-ex h4 {
	line-height: 2em !important;
}

.pd-ex {
	padding: 20px 50px 20px 50px;
}

.pd-ex-2 {
	padding: 10px 50px 10px 50px;
}

.icon-g {
    border: 2px solid #4cc764 !important;
    color: #4cc764 !important;
}

.text-left {
	text-align: left !important;
}

.h-ex {
	height: 100px !important;
}

.a-ex {
	color: var(--dark-color);
}

.bg-gray {
	background: #f8f8f8 !important;
}

.h-ex-2 {
	height: 300px !important;
}

.bana img {
	height: 70px !important;
	width: auto !important;
	object-fit: cover;
	border-radius: 15px;
	margin: 10px;
}

/* ナビゲーションメニュー */
.nav-menu {
  background-color: #333; /* メニューの背景色 */
  color: #fff; /* メニューテキストの色 */
}
.menu-list {
  display: flex;
  justify-content: center; /* メニューアイテムを中央揃えに */
}
.menu-item {
  border-left: 1px solid #fff; /* メニューアイテムの左ボーダー */
  position: relative;
}
.menu-item:last-child {
  border-right: 1px solid #fff; /* 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}

.menu-item li{
	list-style: none;
}

.menu-item a {
  color: #fff; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  text-decoration: none; /* リンクの下線を非表示 */
  text-align: left;
}

.menu-item a span{
  height: 30px;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background-color: #696969; /* ドロップダウンメニューの背景色 */
  left: 0;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  top: 100%;
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
  padding: 20px !important;
}

#btn-ex {
	border: none;
	height: 30px;
	width: 30px;
}

#input-ex {
	border: none;
	height: 30px;
}