@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
@charset "UTF-8";
@import url("root.css");


/***************************************
---------------- MENU----------------
***************************************/
#menu-btn-check,
.menu-btn {
  display: none;
}
ul#page_link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  max-width: var(--container-width);
  margin: auto;
  list-style: none;
  justify-content: center;
  li a {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: inherit;
    align-items: center;
    justify-content: center;
    transition: 0s;
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
  }
  > li {
    width: 16.6666666667%;
    height: inherit;
    display: flex;
    align-items: center;
    position: relative;
  }
  > li.has-child {
    position: relative;
    .menu-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      z-index: 1;
      li {
        width: 100%;
        a {
          padding: 10px 0;
          display: block;
          width: 100%;
          text-align: center;
          color: #fff;
          font-size: 1.6rem;
          background: var(--base-color01);
        }
      }
    }
  }
  > li.has-child > a {
    position: relative;
    padding-right: 0.5rem;
    .menu-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      left: auto;
      right: 0.5rem;
      margin: auto;
      width: 30px;
      height: 30px;
      transition: 0.3s;
      transform: rotate(0deg);
      padding: 0 !important;
      i { font-size: 1rem;}
    }
  }
}
body:not(.home) .navigation ul#page_link {
  padding-top: 10px;
}

@media (min-width: 768px) {
  ul#page_link > li.has-child > a .menu-dropdown-toggle {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0px;
  }
  html:not(.touch-enabled) ul#page_link li.has-child:hover {
    .menu-dropdown { display: block !important;}
    > a .menu-dropdown-toggle,
    ul#page_link li.has-child > a.is-open .menu-dropdown-toggle {
      transform: rotate(180deg);
    }
  }
  .home header .navigation { display: none; }
  .sp_nav { display: none; }
  .navigation { background: #fff; }

  ul#page_link {
    padding: 30px 10px;
    height: initial;
    gap: 0 10px;
  }
  ul#page_link > li {
    flex: 1;
    width: initial;
  }
  ul#page_link > li:before,
  ul#page_link > li:after {
    display: none;
  }
  ul#page_link > li > a {
    border: none;
    font-size: clamp(16px, 2vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    aspect-ratio: 5/2;
    background: #fdfcf4;
    font-family: "Zen Maru Gothic", serif;
    color: var(--base-color01);
    text-align: center;
    font-weight: bold;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1803921569);
  }
}
@media (min-width: 1120px) {
  ul#page_link > li.has-child > a .menu-dropdown-toggle {
    bottom: 10px;
  }
  ul#page_link {
    padding: 47px 0;
    gap: 0 20px;
  }
}


@media (max-width: 767px) {
  ul#page_link > li.has-child > a {
    padding-right: 15px;
    position: relative;
    z-index: 1;
  }
  ul#page_link > li.has-child .menu-dropdown {
    display: none;
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    z-index: unset;
  }
  html.touch-enabled ul#page_link li.has-child > a.is-open .menu-dropdown-toggle {
    transform: rotate(180deg);
  }

  .menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    color: #fff;
    cursor: pointer;
    background: var(--base-color01);
  }

  .menu-btn span.bar,
  .menu-btn span.bar:before,
  .menu-btn span.bar:after {
    content: "";
    display: block;
    height: 3px;
    width: 34px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
  }

  .menu-btn span.bar:before { top: -10px; }
  .menu-btn span.bar { top: 50%; }
  .menu-btn span.bar:after { top: 10px; }

  #menu-btn-check:checked ~ .menu-btn span.bar {
    background-color: transparent;
  }

  #menu-btn-check:checked ~ .menu-btn span.bar::before {
    top: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked ~ .menu-btn span.bar::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navigation {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    top: 60px;
    left: 100%;
    z-index: 80;
    background: var(--base-color01);
    transition: all 0.5s;
  }

  .navigation ul#page_link {
    padding: 10px 25px 0;
    height: auto;
  }

  .navigation ul#page_link > li {
    width: 100%;
    margin: 0;
    border-bottom: solid 1px #fff;
    list-style: none;
  }

  .navigation ul#page_link li:not(:last-of-type)::after {
    content: none;
  }

  .navigation ul#page_link > li a {
    padding: 1em 0;
  }

  .navigation ul#page_link > li a span {
    padding: 0 0 5px;
  }

  .navigation ul#page_link > li:before,
  .navigation ul#page_link > li:last-of-type:after {
    content: none;
  }

  .navigation ul#page_link > li a:hover,
  .navigation ul#page_link > li span:hover {
    background: none;
    opacity: 0.8;
  }

  #menu-btn-check:checked ~ .navigation {
    left: 0; /*メニューを画面内へ*/
  }

  .navigation li.has-child .menu-dropdown {
    position: static;
    background: none;
    width: calc(100% - 2px);
    opacity: 1;
    transition: none;
    display: none;
  }

  .navigation li.has-child {
    flex-wrap: wrap;
  }

  .phone_num.sp-only {
    width: 90%;
    text-align: center;
    max-height: unset;
    margin: 30px auto;
    display: block;
  }

  .phone_num.sp-only a {
    color: #fff;
  }

  .phone_num p {
    font-size: 1.6rem;
    background: none;
    margin-top: 20px;
  }
  .home .home_nav {
    display: none;
  }
  .sp_nav {
    display: flex;
    width: 120px;
    margin-right: 60px;
  }
}

/*
アイコン追加
*/

ul#page_link {
  > li > a {
    transition: .5s;
  }
  > li > a:hover {
    color: #fff;
    background: var(--base-color01);
  }
  .nav_home a::before {
    content: "";
    display: block;
    width: auto;
    height: 1.75em;
    aspect-ratio: 1/1;
    margin-right: .5em;
    background: url(../img/nav01.svg) no-repeat center center/contain;
  }
  .nav_news a::before {
    content: "";
    display: block;
    width: auto;
    height: 1.75em;
    aspect-ratio: 1/1;
    margin-right: .5em;
    background: url(../img/nav02.svg) no-repeat center center/contain;
  }
  .nav_work > a::before {
    content: "";
    display: block;
    width: auto;
    height: 1.75em;
    aspect-ratio: 1/1;
    margin-right: .5em;
    background: url(../img/nav03.svg) no-repeat center center/contain;
  }
  .nav_about a::before {
    content: "";
    display: block;
    width: auto;
    height: 1.75em;
    aspect-ratio: 1/1;
    margin-right: .5em;
    background: url(../img/nav04.svg) no-repeat center center/contain;
  }
  .nav_contact a::before {
    content: "";
    display: block;
    width: auto;
    height: 1.75em;
    aspect-ratio: 1/1;
    margin-right: .5em;
    background: url(../img/nav05.svg) no-repeat center center/contain;
  }
}




/***************************************
------------- TOP MAIN IMG -------------
***************************************/
#mv {
	width: 100%;
	background-image: linear-gradient(0deg, #57acc1 30%, #75c3d3 30%);
	max-height: 500px;
	.mv_bg {
		width: inherit;
		height: 100%;
		position: relative;
		.mv_container_pc {
			position: relative;
			z-index: 1;
			width: min(96%, 1100px);
			height: 100%;
			margin: 0 auto;
			img {
				width: 100%;
				height: auto;
				aspect-ratio: 11/5;
				object-fit: contain;
			}
		}
		.mv_container_sp {
			display: none;
		}
	}
	.mv_bg:after {
		content: "";
		width: calc(50% + (min(96%, 1100px) / 2 * 0.75));
		height: min(15%, 75px);
		background: #fff;
		position: absolute;
		left: 0;
		bottom: calc(7.5% + .5px);
	}
}

@media (max-width: 767px) {
	#mv {
		max-height: none;
		.mv_bg {
			.mv_container_pc { display: none; }
			.mv_container_sp {
				display: block;
				width: 100%;
				height: auto;
				margin-top: 60px;
				img {
					width: 100%;
					height: auto;
					aspect-ratio: 15/10;
					object-fit: contain;
				}
			}
		}
		.mv_bg:after {
			content: none;
		}
	}
}
/***************************************
------------- TOP COMMON -------------
***************************************/
.top_ttl {
	font-size: clamp(3.3rem, 0.7rem + 3.5vw, 4.8rem);
	font-weight: 600;
	color: #555555;
	margin-bottom: 0.4em;
	line-height: 1.2;
	font-family: var(--title-font-family);
}

/* PC */
@media (min-width: 1025px) {
	.tablet-only {
		display: none;
	}
}

/* SP */
@media (max-width: 767px) {
	.sp-text-center {
		text-align: center;
	}

	.tablet-only {
		display: none;
	}
}

.sec_top h2 {
	font-size: 27px;
	color: var(--base-color01);
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
}

@media ( max-width : 767px ) {
	.sec_top h2 {
		margin: 0 auto 1.2em;
	}
}

.sec_top .sec_img {
	margin: 0;
	text-align: center;
}

.sec_top .sec_img img {
	margin: auto;
	max-width: 100%;
}

.sec_top .container {
	padding: 0 10px;
}

.sec_top .sec_btn a {
	font-size: 20px;
	line-height: 1;
	max-width: 620px;
	border-radius: 80px;
	padding: 20px 20px;
	position: relative;
}

.sec_top .sec_btn a:after {
	content: "";
	position: absolute;
	display: block;
	margin: auto;
	transform: rotate(0);
	border: none;
	width: 20px;
	height: 20px;
	background: url("../img/btn_arrow.svg") no-repeat center/contain;
}

@media (min-width: 768px) {
	.sec_top h2 {
		font-size: 36px;
	}

	.sec_top .container {
		padding: 0 20px;
	}

	.sec_top .sec_btn a {
		font-size: 28px;
		line-height: 1;
		max-width: 620px;
		border-radius: 80px;
		padding: 26px 20px;
	}

	.sec_top .sec_btn a:after {
		width: 40px;
		height: 41px;
		background: url("../img/btn_arrow.svg") no-repeat center/contain;
	}
}

@media (min-width: 1120px) {
	.sec_top .container {
		padding: 0;
	}
}
/***************************************
------------- SECTION 01 -------------
***************************************/
.sec01 {
	padding: 50px 0;
	background: #fcfaea;
}
.sec01 .sec_title {
	font-size: 22px;
	line-height: 32px;
	font-weight: bold;
	color: var(--base-color01);
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
}

.sec01 .sec_text {
	font-size: 17px;
	line-height: 32px;
	width: 94%;
	margin: 0 auto 25px;
}

.sec01 .sec_text2 {
	font-size: 16px;
	line-height: 30px;
}

.sec01 .sec_box {
	padding: 0 0 30px;
	background: #fff;
}
.sec01 .sec_icon {
	text-align: center;
}

@media ( max-width : 767px ) {
	.sec01 { background: #fff; }
	.sec01 .row { gap: 0; }
	.sec01 .sec_box {
		margin-left: -10px;
		margin-right: -10px;
		background: #fcfaea;
	}
	.sec01 .title_box {
		display: flex;
		flex-direction: column-reverse;
		gap: 20px;
	}
	.sec01 .sec_title {
		padding: 10px 0;
		margin-top: 0;
		color: #fff;
		background: var(--base-color01);
		margin-bottom: 30px;
	}
	.sec01 .sec_text2 {
		width: 94%;
		margin: auto;
		background: #fff;
		padding: 0 clamp(10px, 2.5%, 20px) clamp(10px, 2.5%, 20px);
	}
	.sec01 .sec_icon {
		width: 94%;
		margin: auto;
		background: #fff;
		padding: clamp(10px, 2.5%, 20px);
		img {
			max-width: 45%;
		}
	}
}

@media (min-width: 768px) {
	.sec01 {
		padding: 70px 0 85px;
		.sec_text {
			font-size: clamp(18px, 2.4vw, 22px);
			line-height: 1.5;
			text-align: center;
			margin-bottom: 50px;
		}
		.sec01_wrap {
			width: 100%;
			display: flex;
			flex-wrap: wrap;
			gap: 0 2%;
		}
		.sec_title {
			font-size: clamp(20px, 3vw, 32px);
			line-height: 1.5;
			margin: 0 auto 1em;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 3em;
		}
		.sec_box {
			width: 32%;
			display: flex;
			flex-direction: column;
			padding: clamp(10px, 5vw, 20px);
		}
		.sec_icon {
			width: 100%;
			height: 150px;
			margin-bottom: 2em;
			flex-shrink: 0;
		}
		.sec_text2 {
			font-size: clamp(16px, 2.2vw, 18px);
			line-height: 1.5;
			flex-grow: 1;
		}
	}
}

/***************************************
------------- SECTION 02 -------------
***************************************/


.sec02 {
	padding: 50px 0;
}
.sec02 .sec_text {
	font-size: 17px;
	line-height: 32px;
	width: 94%;
	margin: 0 auto 25px;
}
.sec01 .sec_text2 {
	font-size: 16px;
	line-height: 30px;
}
.sec01 .sec_icon {
	text-align: center;
}
.sec02 .sec_box {
	padding: 15px 10px;
}
.sec02 .sec_row {
	display: flex;
	flex-wrap: wrap;
	gap: min(2vw,20px) min(2%,20px);
}
.sec02 .sec_row .col_2 {
	width: 48%;
	display: flex;
}
.sec02 .sec_row .col_2 .sec_box {
	flex-grow: 1;
}


.biz01 { background: #f8bdca; }
.biz02 { background: #ffd73b; }
.biz03 { background: #a1d9ed; }
.biz04 { background: #a1e187; }
.biz {
	display: flex;
	flex-direction: column;
	h3 { flex-shrink:0; }
	.sec_text2 { flex-grow:1; }
	.btn { flex-shrink:0; }
}
.biz .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	width: min(100%, 300px);
	height: 2.4em;
	border-radius: 1.2em;
	margin: 1em auto 0;
	position: relative;
}
.biz .btn::after {
	content: "";
	position: absolute;
	display: block;
	margin: auto;
	left: auto;
	right: 5%;
	top: 0;
	bottom: 0;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
}
.biz01 .btn {
	color: #ea889d;
	border: 2px solid #ea889d;
}
.biz01 .btn::after {
	border-top: 2px solid #ea889d;
	border-right: 2px solid #ea889d;
}
.biz02 .btn {
	color: #dbb20f;
	border: 2px solid #dbb20f;
}
.biz02 .btn::after {
	border-top: 2px solid #dbb20f;
	border-right: 2px solid #dbb20f;
}
.biz03 .btn {
	color: #45a4c6;
	border: 2px solid #45a4c6;
}
.biz03 .btn::after {
	border-top: 2px solid #45a4c6;
	border-right: 2px solid #45a4c6;
}
.biz04 .btn {
	color: #3eac11;
	border: 2px solid #3eac11;
}
.biz04 .btn::after {
	border-top: 2px solid #3eac11;
	border-right: 2px solid #3eac11;
}



.sec02 .sec_title {
	font-family: "Zen Maru Gothic", serif;
	display: grid;
	align-items: center;
	grid-template-rows: 2em;
	grid-template-columns: 4em 1fr;
	grid-template-areas:
		"images textA"
		"images textB";
	gap: 0 6%;
	width: 96%;
	margin: 0 auto 20px;
	font-size: clamp(18px, 2.4vw, 24px);
}
h3.sec_title {
	.images { grid-area: images; }
	.textA { grid-area: textA; }
	.textB { grid-area: textB; }
}
h3.sec_title .images {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
}
h3.sec_title .textA {
	width: fit-content;
	height: fit-content;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.0;
	padding-bottom: .25em;
	border-bottom: 3px solid var(--text-color);
	letter-spacing: -0.05em;
}
h3.sec_title .textB {
	width: fit-content;
	height: fit-content;
}

.sec02 .sec_btn {
	margin-top: 30px;
}
.sec02 .sec_text2 {
	font-size: clamp(17px, 2.4vw, 20px);
	line-height: 1.7;
}
@media ( max-width : 599px ) {
	.sec02 .sec_row .col_2 {
		width: 100%;
	}
	.sec02 .sec_title {
		grid-template-rows: 1fr;
		grid-template-columns: 1fr;
		grid-template-areas:
			"textA"
			"textB"
			"images";
	}
	h3.sec_title {
		.images {
			width: min(75%, 240px);
			margin: 1em auto 0;
		}
		.textA {
			font-size: clamp(36px, 7.5vw, 48px);
			margin: auto;
		}
		.textB {
			font-size: clamp(24px, 7.5vw, 32px);
			margin: auto;
		}
	}
}

@media ( max-width : 767px ) {
	.sec02 { padding: 0 0 50px; }
	.sec02 .sec_text2 {
		width: 96%;
		margin: auto;
	}
}

@media (min-width: 768px) {
	.sec02 {
		padding: 70px 0 85px;
	}
	.sec02 .sec_box {
		padding: 20px 10px;
	}
	
	.sec02 .sec_text {
		font-size: 17px;
		line-height: 40px;
		text-align: center;
		margin-bottom: 50px;
		letter-spacing: 0;
	}
	.sec02 .sec_btn {
		margin-top: 50px;
	}
}

@media (min-width: 1120px) {
	.sec02 .sec_btn {
		margin-top: 80px;
	}
	.sec02 .sec_box {
		padding: 30px 30px 20px;
	}
	.sec02 .sec_text {
		font-size: 22px;
		line-height: 50px;
		margin-bottom: 60px;
	}
}
/***************************************
------------- SECTION 03 -------------
***************************************/




.sec03 {
	padding: 50px 0;
	background: #fcfaea;
}

.sec03 .sec_title {
	font-size: 20px;
	margin: 0 0 25px;
	color: var(--base-color01);
	font-weight: bold;
	font-family: "Zen Maru Gothic", serif;
}

.sec03 .sec_text {
	font-size: 16px;
	line-height: 32px;
}

.sec03 .sec_btn {
	margin-top: 30px;
}

@media (max-width: 767px) {
	.sec03 .sec_img {
		width: 40%;
		margin: 0 auto 20px;
	}
}

@media (min-width: 768px) {
	.sec03 {
		padding: 70px 0 85px;
	}

	.sec03 .sec_row {
		display: flex;
		gap: 0 4%;
	}

	.sec03 .sec_row .col_2:first-child {
		width: 26%;
	}

	.sec03 .sec_row .col_2:last-child {
		width: 70%;
	}

	.sec03 .sec_title {
		font-size: 22px;
		margin: 0 0 30px;
	}

	.sec03 .sec_text {
		font-size: 17px;
		line-height: 40px;
		letter-spacing: -0.09em;
	}

	.sec03 .sec_btn {
		margin-top: 50px;
	}
}

@media (min-width: 1120px) {
	.sec03 .sec_title {
		font-size: 28px;
		margin: 0 0 45px;
	}

	.sec03 .sec_text {
		font-size: 22px;
		line-height: 50px;
	}

	.sec03 .sec_btn {
		margin-top: 80px;
	}
}