@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
/* @import url("slide.css"); */
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #323232;		/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #fad02c;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/

	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*fadeInのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeOutのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;visibility: hidden;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ*/
	height: 100%;
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1000px) {

	html, body {
		font-size: 14px;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}
#container {
  width: 80%;
  min-height: 100vh;
  margin-left: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.section__title {
  text-align: center;
}

.section__title span {
  color: #fad02c;
  font-weight: bold;
}

.section__title h2 {
  font-size: 2.5em;
}

.section__title.white h2 {
  color: #fff;
}

.section__title.white span {
  color: #333;
}

.fade-in {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1.5s;
}

.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/******************
  header
******************/

.pc-nav {
  width: 20%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  /* padding: 15px 0px 15px 30px; */
  /* display: flex;
  justify-content: space-between; */
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  background-color: #fad02c;
  z-index: 10;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

header .logo {
  /* margin-bottom: 100px; */
}

header .logo img {
  width: 60%;
  margin: auto;
}

.sp-nav {
  display: none;
}

.pc-nav ul {
  /* display: flex; */
  /* margin-bottom: 100px; */
}

.pc-nav ul li {
  list-style: none;
  /* margin-left: 20px; */
  /* line-height: 50px; */
  /* margin-right: 30px; */
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.2em;
}

.pc-nav ul li a {
  position: relative;
  transition: all 0.3s;
  color: #333333;
  text-decoration: none;
}

.pc-nav ul li a:hover {
  color: #323232;
  font-size: 20px;
  text-decoration: none;
}

.pc-nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #323232;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.pc-nav ul li a:hover::after {
  transform: scale(1, 1);
}

header .hamburger,
header .globalMenuSp {
  display: none;
}

/******************
  main-area
******************/
#main-area {
  height: 550px;
  display: flex;
  justify-content: center;
  /* background-image: url(../images/main-area-bg.png); */
  background-color: #3296DB;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 80px;
  padding-bottom: 50px;
}

#main-area .main-area__text {
  margin-top: 120px;
  width: 600px;
}

#main-area .main-area__text h1 {
  font-size: 70px;
  color: #fff;
}

#main-area .main-area__text > p {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  color: #4C5253;
}

#main-area .main-area__image {
  width: 40%;
  display: flex;
  align-items: center;
}

#main-area .main-area__image img {
  width: 100%;
}

/******************
  feature
******************/
#feature {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

#feature .feature__text {
  width: 30%;
  padding-right: 30px;
  margin-top: 50px;
}

#feature .feature__text h1 {
  font-size: 3em;
  color: #2FC1FF;
  margin-bottom: 30px;
}

#feature .feature__text p {
  font-weight: bold;
  font-size: 1.2em;
}

#feature .feature__img--sp {
  display: none;
}

#feature .feature__img--pc {
  width: 30%;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

#feature .feature__img--pc img {
  width: 100%;
}
/******************
  point
******************/
#point {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  background-image: url(../images/chandra-point-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

#point .point__image--sp {
  display: none;
}

#point .point__image--pc {
  width: 25%;
  margin-right: 100px;
}

#point .point__image--pc img {
  width: 100%;
}

#point .point__text {
  width: 30%;
}

#point .point__text span {
  font-weight: bold;
  color: #2FC1FF;
}

#point .point__text h2 {
  font-size: 3em;
  margin-bottom: 15px;
}

#point .point__text p {
  font-weight: bold;
  font-size: 1.5em;
  color: #4C5253;
  margin-bottom: 30px;
}

#point .point__text ul li {
  font-weight: bold;
  font-size: 1.2em;
  list-style: none;
  margin-bottom: 15px;
}

#point .point__text ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #2FC1FF;
  border-radius: 50%;
  margin-right: 5px;
}

.point__button {
  margin-top: 30px;
}

.point__button a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.point__button a:after {
content: "";
position: absolute;
top: 50%;
bottom: 0;
right: 2rem;
font-size: 90%;
display: flex;
justify-content: center;
align-items: center;
transition: right 0.3s;
width: 6px;
height: 6px;
border-top: solid 2px currentColor;
border-right: solid 2px currentColor;
transform: translateY(-50%) rotate(45deg);
}
.point__button a:hover {
background: #6bb6ff;
color: #FFF;
}
.point__button a:hover:after {
right: 1.4rem;
}

/******************
  service
******************/
#service {
  margin-top: 100px;
  background-color: #F2F5F9;
  padding: 50px 0;
}

#service .service__contents {
  width: 80%;
  display: flex;
  justify-content: space-around;
  margin: auto;
  margin-top: 30px;
  position: relative;
}

#service .service__contents .service__content {
  width: 300px;
  /* height: 450px; */
  border: 2px solid #2FC1FF;
  border-radius: 15px;
  padding: 15px 30px;
  margin: 0 50px;
  text-align: center;
  background-color: #fff;
}

#service .service__contents .service__content span {
  font-size: 3em;
  color: #2FC1FF;
  font-weight: bold;
}

#service .service__contents .service__content h2 {
  font-size: 1.5em;
}

#service .service__contents .service__content p {
  font-weight: bold;
  color: #4C5253;
  text-align: left;
}

#service .service__contents .service__content .service__content-image {
  width: 60%;
  margin: auto;
  margin-bottom: 10px;
}

#service .service__contents .service__content .service__content-image img {
  width: 100%;
}
/******************
  column
******************/
#column {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}

#column .column__title {
  box-sizing: border-box;
  width: 25%;
  display: flex;
  align-items: center;
  /* min-width: 390px; */
  padding: 80px 0;
  margin-right: 50px;
  margin: 30px 50px 30px 0;
  background-color: #fad02c;
  border-radius: 0 max(10px,min(15px,calc((100vw - 10px - 100%)*9999))) max(10px,min(15px,calc((100vw - 10px - 100%)*9999))) 0;
}

#column .column__title .section__title {
  width: 100%;
  padding: 0 30px;
}

#column .column__title h2  {
  color: #FFF
}

#column .column__title h2 {
  font-size: 2em;
}

#column .column__button {
  margin-top: 15px;
  text-align: center;
}

#column .column__button a {
  background: #eee;
  border-radius: 50px;
  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  display: inline-block;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  font-size: 15px;
}
#column .column__button a:hover {
  background: #313131;
  color: #FFF;
}
#column .column__button a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
#column .column__button a:hover:after {
  border-color: #FFF;
}

#column .column__slider {
  width: 70%;
  position: relative;
}

#column .prev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  z-index: 3;
  font-size: 3.5em;
  color: #fad02c;
  border-radius: 56px;
}

#column .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60%;
  font-size: 3.5em;
  color: #fad02c;
  border-radius: 56px;
}

#column .column__item {
  width: 300px;
  /* height: 340px; */
  border-radius: 15px 15px 15px 15px;
  margin-right: 30px;
  box-shadow: 4px 4px 10px 0 #d6e0e3;
  overflow-wrap: break-word;
  transition: all .3s;
}

#column .column__item:hover,
#column .column__item--works:hover {
  transform: scale(1.1);
}

/* #column .slick-list {
  padding-bottom: 15px!important;
} */

#column .column__item .column__img {
  width: 100%;
  transition: all .3s;
}

#column .column__item .column__img img {
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: auto;
}

#column .column__item .column__text,
#column .column__item--works .column__text {
  margin-top: 10px;
  padding: 15px;
}

#column .column__item .column__text .column__date,
#column .column__item--works .column__text .column__date {
  font-weight: bold;
}

#column .column__item .column__text .column__category,
#column .column__item--works .column__text .column__category {
  color: #fad02c;
  font-weight: bold;
  font-size: 12px;
  border: 1px solid #fad02c;
  border-radius: 20px;
  padding: 2px 10px;
  margin-left: 8px;
  transition: all .3s;
}

#column .column__item .column__text .column__category:hover,
#column .column__item--works .column__text .column__category:hover {
  color: #fff;
  background-color: #37ab9d;
}

#column .column__item .column__text h3,
#column .column__item--works .column__text h3 {
  margin-top: 15px;
  transition: all .3s;
  font-size: 20px;
}

#column .column__item a:hover .column__text h3,
#column .column__item--works:hover .column__text h3 {
  text-decoration: underline;
  color: #37AB9D;
}

/******************
  works
******************/
#column .column__item--works {
  width: 90%;
  margin: auto;
	display: flex;
	justify-content: space-around;
  border-radius: 15px;
  box-shadow: 4px 4px 10px 0 #d6e0e3;
  transition: all .3s;
}

#column .column__item--works .column__img {
  width: 40%;
  display: flex;
  align-items: center;
}

#column .column__item--works .column__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 15px 15px 0;
}

#column .column__item--works .column__text {
  font-weight: bold;
  width: 60%;
}

#column .column__item--works .column__text p {
  margin-top: 15px;
  transition: all .3s;
}

#column .column__item--works:hover .column__text p {
  text-decoration: underline;
}

/******************
  news
******************/
#news {
  margin: auto;
}

#news .news__wrapper {
  margin-top: 30px;
  text-align: left;
}

#news .news__wrapper .news__list {
  list-style: none;
  font-weight: bold;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

#news .news__wrapper .news__list a {
  display: flex;
}

#news .news__wrapper .news__list a .news__title {
  transition: all .3s;
}

#news .news__wrapper .news__list a:hover .news__title {
  text-decoration: underline;
  color: #fad02c;
}

#news .news__wrapper .news__list span {
  font-weight: normal;
  color: #4C5253;
  margin-right: 30px;
}

#news .news__wrapper .news__list .news__date {
  margin-right: 30px;
  color: #fad02c;
  font-weight: bold;
}

/******************
  footer
******************/
#contact {
  background-color: #37ab9d;
  /* background-image: url(../images/footer-bg.jpg); */
  background-size: cover;
  background-position: right;
  /* display: flex; */
  justify-content: center;
  margin-bottom: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}


#contact .section__title {
  /* margin-right: 150px; */
  /* margin-top: 30px; */
  margin-bottom: 50px;
  color: #fff;
}

#contact .section__title span {
  color: #000;
}

#contact .contact__text {
  text-align: center;
  font-weight: bold;
  color: #fff;
}

#contact .contact__text h2 {
  font-size: 1.5em;
}

#contact .button {
  width: auto;
  margin: 30px auto 0;
}

/* footer {
  width: 80%;
  margin-left: auto;
  margin-top: 100px;
  padding-bottom: 50px;
  background-color: #F2F5F9;
  text-align: center;
  justify-content: space-around;
  border: 1px solid #d8d8d879;
}

footer .footer__nav {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

footer .footer__nav .footer__info {
  margin-left: 200px;
}

footer .footer__nav .footer__info .footer__nav--title {
  padding-bottom: 8px;
  border-bottom: 1px solid #555;
}

footer .footer__nav .footer__info .footer__nav--text {
  padding-top: 8px;
  margin-bottom: 15px;
}

footer .footer__info p {
  color: #4C5253;
  font-size: 15px;
  font-weight: bold;
}

footer .footer__nav .footer__info .copyright {
  margin-top: 30px;
  font-weight: normal;
}

footer .footer__logo {
  width: 200px;
  object-fit: contain;
  margin-bottom: 30px;
}

footer ul {
  margin-right: 200px;
}

footer ul li {
  list-style: none;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 15px;
}

footer ul li a {
  font-weight: bold;
  transition: all .3s;
}

footer ul li a:hover {
  color: #2FC1FF;
} */