@charset "UTF-8";

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  overflow-x: hidden;
  color: #333333;
}

ul,ol {
  padding: 0;
  list-style: none;
}

li {
  list-style-type: none;
}

dd {
  margin-left: 0;
}

a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* =============================================
ヘッダーのCSSはここから
============================================= */
/*========= 上部固定させるためのCSS ===============*/

#header{
	position: fixed;/*fixedを設定して固定*/
	height: 90px;/*高さ指定*/
	width:100%;/*横幅指定*/
  z-index: 999;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: center;
	align-items: center;
	background:#E6D5B8;
	color:#FBFCFF;
	text-align: center;
	padding: 20px;
  border-bottom-right-radius: 25%;
  border-bottom-left-radius: 25%;
}

.g-navi_layout {
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 1.2rem;
}

.header .logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  margin: 5px auto;
  text-align: center;
  line-height: 1.8rem;
  color: #4a4a4a;
}
.header__list {
  display: flex;
  margin: 0 auto;
  width: 100%;
  color: #4a4a4a;
}

.header__item:nth-child(3) {
  margin-right: 350px;
}

.header-logo {
  font-size: 1.1rem;
}

/*========= ナビゲーションのためのCSS ===============*/
/* タブレット以下用のCSS */
@media screen and (max-width: 1025px){
    /*アクティブになったエリア*/
    .g-nav.panelactive{
      /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
      position:fixed;
      z-index: 999;
      top: 0;
      width:100%;
      height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg{
      position: fixed;
      z-index:3;
      /*丸の形*/
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #E6D5B8;
      /*丸のスタート位置と形状*/
      transform: scale(0);/*scaleをはじめは0に*/
      right:-50px;
      top:-50px;
      transition: all 1s;/*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
    }

    #g-nav.panelactive #g-nav-list{
      display: block; /*クラスが付与されたら出現*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
      display: none;/*はじめは表示なし*/
      /*ナビの数が増えた場合縦スクロール*/
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      overflow: visible;
    }

    /*ナビゲーション*/
    #g-nav ul {
      opacity: 0;/*はじめは透過0*/
      /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
      position: absolute;
      z-index: 999;
      top:50%;
      left:50%;
      transform: translate(-50%,-50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
      opacity:1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li{
      animation-name:gnaviAnime;
      animation-duration:1s;
      animation-delay:.2s;/*0.2 秒遅らせて出現*/
      animation-fill-mode:forwards;
      opacity:0;
    }
    @keyframes gnaviAnime{
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
    }

    /*リストのレイアウト設定*/
    .header__list {
      display: block;
      width: 50%;
    }

    .g-navi_layout {
      margin: 2rem auto;
    }

    #g-nav li{
      display: block;
      text-align: center;
      list-style: none;
    }

    .header__item:nth-child(3) {
      margin-right: auto;
    }
  }
/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/
/* タブレット以下用のCSS */
@media screen and (max-width: 1025px){
    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn{
      position:fixed;
      top:10px;
      right: 10px;
      z-index: 9999;/*ボタンを最前面に*/
      cursor: pointer;
      width: 50px;
      height:50px;
    }


    /*ボタン内側*/
    .openbtn span{
        display: inline-block;
        transition: all .4s;/*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #FBFCFF;
        width: 45%;
      }

    .openbtn span:nth-of-type(1) {
      top:13px;
    }

    .openbtn span:nth-of-type(2) {
      top:19px;
    }

    .openbtn span:nth-of-type(3) {
      top:25px;
    }

    .openbtn span:nth-of-type(3)::after {
      content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
      position: absolute;
      top:5px;
      left:-2px;
      color: #FBFCFF;
      font-size: 0.6rem;
      text-transform: uppercase;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
      opacity: 0;
    }

    .openbtn.active span:nth-of-type(3){
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
      content:"Close";/*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
      top:5px;
      left:4px;
    }
  }
/* =============================================
レイアウトのCSSはここから
============================================= */
body {
  background-color: #E6D5B8;
  position: relative;
  color: #4a4a4a;
}

a {
  letter-spacing: 0.15em;
}

p {
  width: 100%;
  padding: 0;
}

.font {
  margin: 0 auto;
  text-align: center;
  width: 80%;
  padding: 10px 0 10px 20px;
  border-top-right-radius: 25px;
  font-size: 2rem;
  background-color: #E6D5B8;
}

.font2 {
  margin: 0 0 0 4rem;
  text-align: center;
  width: 80%;
  padding: 10px 0 10px 20px;
  border-top-right-radius: 25px;
  font-size: 2rem;
  background-color: #E6D5B8;
}

.font3 {
  margin: 0 0 0 3.3rem;
  text-align: center;
  width: 100%;
  padding: 10px 0 10px 90px;
  border-radius: 25px;
  font-size: 2rem;
  background-color: #E6D5B8;
}

.font-parts:first-letter {
  font-size: 1.5em;
  color: #7172ac;
}

.font-parts2 {
  text-align: right;
}

h1 {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

h4 {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.title-h4 {
  padding: 0.5rem;
  border-left: 1px solid #000;
  margin: 1rem 2rem;
}

.header-title {
  font-size: 1.6rem;
}

.annotation {
  font-size: 0.8em; /* 文字サイズ調整 */
	vertical-align: top;  /* 文字の位置調整 */
}

.wrapper, .list-wrapper, .time-table-wrapper, .information-wrapper,
 .information-wrapper02, .recruit-wrapper {
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

.wrapper {
  margin-bottom: 3rem;
}

.time-table-wrapper {
  padding-bottom: 8rem;
}

.information-wrapper {
  padding-bottom: 7rem;
}

.information-wrapper02 {
  background-color: #e6d5b8;
}

.admission-wrapper {
  min-width: 80%;
}

.main-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

/* =====テキストリンク（ヘッダー）はここから==== */
.textlink_border_type7 {
	position: relative;

	&::after {
		position: absolute;
		bottom: -3px;
		left: 0;
		display: block;
		content: "";
		width: 100%;
		height: 3px;
		background: #a3c9a8;
		transform: scale(0,1);
		transform-origin: left top;
		transition: transform .3s ease;
	}

	&:hover {
		&::after {
			transform-origin: right top;
			transform: scale(1,1);
		}
	}
}
/*=======テキストリンク（ポリシー、市役所）===============*/
.kuwanacity, .policy-link  {
  border-bottom: 1px solid #333;
  
  &:hover {
    color: #a3c9a8;
    border-bottom: #a3c9a8;
  }
}

/* =====テキストリンク（フッター）はここから==== */
.textlink_type2 {
	text-decoration-line: underline;

	&:hover {
		color: #a3c9a8;
	}
}

/* =====テキストリンク（フッター）はここから==== */
.textlink_type1 {
	transition: color .3s ease;

	&:hover {
		color: #FBFCFF;
	}
}

/* =====グーグルフォント（タイトル）はここから==== */
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;/* ========400 500 700どれか１つ======== */
  font-style: normal;
  padding-bottom: 2rem;
}

.zen-maru-gothic-regular02 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;/* ========400 500 700どれか１つ======== */
  font-style: normal;
  padding-bottom: 0.8rem;
}

.zen-maru-gothic-regular03 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;/* ========400 500 700どれか１つ======== */
  font-style: normal;
}

/* =====グーグルフォント（コピー）はここから==== */
.zen-kurenaido-regular {
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  font-style: normal;
}
/* =====グーグルフォント（数字）はここから==== */
.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 400;
  font-style: normal;
}
.adjustment {
  padding-top: 8rem;
}

.adjustment03 {
  padding-top: 1rem;
}

@media screen and (max-width: 650px) {
  .adjustment03 {
    padding-top: 8rem;
  }
  }

.power{
  color: #c2704e;
}

section.timeline {
  background-color: #E6D5B8;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

/* =====ふきだし見出しはここから==== */
.fukidashi-01-12, .fukidashi-01-11, .fukidashi-01-10 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.fukidashi-01-12 {
  padding: 3rem 16px 0;
}

.fukidashi-01-11 {
  padding: 1rem 16px 0;
}

.fukidashi-01-10 {
  padding: 3rem 16px 0;
}

.fukidashi-01-12::before, .fukidashi-01-11::before, .fukidashi-01-10::before {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #333333;
}
.fukidashi-01-12::after, .fukidashi-01-11::after, .fukidashi-01-10::after {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #333333;
}

/* =============================================
mainのCSSはここから
============================================= */
#main {
  width: 100%;
  position: relative;
  top: -230px;
  left: 0;
  margin: 0 auto;
  text-align: center;
  overflow:hidden;
  background-color: #FBFCFF;
}

.supportcenter, .information {
  width: 70%;
  margin: 0 auto 5rem;
  align-items: center;
  background-color: #FBFCFF;
}

.main-title {
  text-align: center;
}

.center-main {
  width: 100%;
  background-color: #FBFCFF;
  padding-bottom: 3rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}


/* =============================================
ボタンのCSSはここから
============================================= */
.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 3rem 4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 0.7rem;
  margin: 2rem 3rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

a.btn-malformation {
  color: #fff;
  border-radius: 100% 80px / 80px 100%;
  background-color: #a3c9a8;
}

a.btn-malformation:hover {
  color: #fff;
  border-radius: 60% 80% / 100% 80%;
}

.button {
  display: flex;
  width: 100%;
}

div .btn {
  margin: 1.5rem 2rem;
  padding: 2rem;
}

@media screen and (max-width: 650px) {
.button {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
}

/* ====PDF ダウンロードボタンはここから======= */
.button003 a {
  background: #a3c9a8;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button003 a:hover {
  background: #86a38a;
  color: #FFF;
}
.button003 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;
}
.button003 a:hover:after {
  border-color: #FFF;
}
/* =============================================
timeline装飾（top）CSSはここから
============================================= */
.timeline{
  overflow:hidden;
  position:relative;
  }
  .timeline::before{
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 214% 96px;
  background-position: 54% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23fbfcff"/></svg>');
  }

  @media screen and (min-width:768px){
  .timeline::before{
  background-size: 161% 115px;
  background-position: 50% 0%;
  }
  }

  @media screen and (min-width:1025px){
  .timeline::before{
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 115px;
  background-position: 50% 0%;
  }
  }

/* =============================================
mainのボトム装飾（フッター直前）CSSはここから
============================================= */
  #main::before, .center-main::before {
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 265% 49px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33.87 1.72" preserveAspectRatio="none"><g fill="%23e6d5b8"><path d="m 0,0 a 2.5,2.5 0 0 0 5,0 1.5,1.5 0 0 0 3,0 2,2 0 0 0 4,0 1.5,1.5 0 0 0 3,0 1,1 0 0 0 2,0 2.5,2.5 0 0 0 5,0 3.5,3.5 0 0 0 7,0 2.5,2.5 0 0 0 5,0 5,5 0 0 0 10,0 2.5,2.5 0 0 0 5,0 4,4 0 0 0 8,0 2.5,2.5 0 0 0 5,0 3,3 0 0 0 6,0 2.5,2.5 0 0 0 5,0 5.5,5.5 0 0 0 11,0 2.5,2.5 0 0 0 5,0 4,4 0 0 0 8,0 3,3 0 0 0 6,0 4,4 0 0 0 8,0 5,5 0 0 0 10,0 3.5,3.5 0 0 0 7,0 z" transform="matrix(-.26458 0 0 -.26458 33.87 1.72)"/><path d="m 0,0 a 3.5,3.5 0 0 0 7,0 5,5 0 0 0 10,0 4,4 0 0 0 8,0 5.5,5.5 0 0 0 11,0 6.5,6.5 0 0 0 13,0 5,5 0 0 0 10,0 6,6 0 0 0 12,0 6.5,6.5 0 0 0 13,0 5.5,5.5 0 0 0 11,0 4.5,4.5 0 0 0 9,0 6,6 0 0 0 12,0 6,6 0 0 0 12,0 z" opacity=".66" transform="matrix(-.26458 0 0 -.26458 33.87 1.72)"/></g></svg>');
  }

  @media screen and (min-width:768px){
  #main::before, .center-main::before{
  background-size: 236% 91px;
  background-position: 50% 100%;
  }
  }

  @media screen and (min-width:1025px){
  #main::before, .center-main::before{
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 128% 102px;
  background-position: 50% 100%;
  }
  }

/* =============================================
プライバシーポリシーのCSSはここから
============================================= */
.policy-wrapper {
  position: relative;
  top: 8rem;
  margin-bottom: 8rem;
  left: 0;
}
.policy-area {
  max-width: 70%;
  margin: 0 auto;
  text-align: left;
}

.policy-text {
  width: 90%;
  align-items: center;
  margin: 0 auto 2rem;
}

.policy-text_Purpose {
  margin: 0 0 2rem 5rem;
}

.policy-text_Purpose li {
  list-style-type: decimal;
}

.policy-text_contact {
  margin: 0 0 2rem 2rem;
}

h3 {
  border-bottom: 3px solid #a3c9a8;
  font-size: 1.25rem;
  font-weight: bold;
  color: #4a4a4a;
}

.customer--policy__title {
  text-decoration: underline;
}

.customer--policy__text {
  padding-left: 3rem;
}

.customer--policy__text02 {
  padding-left: 3rem;
}

.customer--policy__text03 {
  padding: 0 0 2rem 3rem;
}

  .customer--policy__text02::before, .customer--policy__text03::before {
    content: "・";
  }

.customer--policy__text-area {
  width: 90%;
  margin: 0 auto;
  align-items: center;
}
.customer-text {
  margin-bottom: 2rem;
}

.customer-text02 {
  text-indent: 1rem;
}

 /* =============================================
  お問合せのCSSはここから
  ============================================= */
  .contact-area, .contact-area2 {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    background-color: #FBFCFF;
    position: relative;
  }

  .contact-area {
    padding: 8rem 0 10rem;
  }

  .contact-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .contact-area2 {
    padding: 0 0 10rem;
  }

  .contact--text__area {
    position: relative;
    z-index: 3;
  }
  .contact-text {
    margin: 1rem 0 2rem;
  }

  .contact-text2 {
    font-size: 1.5rem;
  }

  .contact-tel {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
  }

  .contact-text__layout {
    padding-bottom: 2rem;
  }

  .contact-tel__kuwanacity {
    font-weight: 400;
    font-size: 1rem;
  }
 
.boxmi14 {
  margin: 2rem auto 1rem;
  border: dashed 2px #e6d5b8;
  border-radius: 8px;
  box-shadow: 0 0 0 10px #fff6e6;
  padding: 20px 20px 20px 20px;
  font-weight: bold;
  color: #ee8992;
  background: #fff6e6;
  width: 60%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.boxmi14-title {
  background: #fff6e6;
  border-radius: 8px 8px 0 0;
  margin: -20px -20px 5px -20px;
  font-size: 1.3em;
  padding: 10px 0 10px 0;
  color: #ee8992;
  font-weight:bold;
  text-align: center;
}
.boxmi14 p {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1025px) {
.boxmi14 {
  width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .boxmi14 {
    text-align: left;
    }

    .contact-text {
      width: 90%;
      margin: 0 auto;
      text-align: left;
    }
  }
  

/* =============================================
お問い合わせの装飾CSSはここから
============================================= */
.skewed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FBFCFF;
  z-index: 1;
  transform: skewY(6deg);
  transform-origin: top right;
}
/* =============================================
フッターのCSSはここから
============================================= */
/* トップページのフッター */
.footer {
  position: relative;
  top: -5rem;
  left: 0;
  width: 100%;
  align-content: center;
  padding: 0 0 1.5rem;
  background-color: #E6D5B8;
}
.footer-container01 {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: flex-end;
}
.footer-container {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 1em;
}

.footer-logo {
  width: 40%;
  margin-bottom: .2em;
  
}

.footer-caption {
  margin-top: 0;
  color: #a6adb3;
  font-size: .75em;
}

.name-tag {
  background-image: url(../img/fabicon.png);
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: left;
  padding-left: 50px;
  line-height: 3.2rem;
}

.footer-container nav {
  width: 100%;
}

.footer-title {
  font-weight: 600;
}

.footer-link {
  display: block;
}

@media screen and (max-width: 1025px) {
  .footer-logo {
    width: 100%;
  }

  .footer-container {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

@media screen and (max-width: 430px) {
  .footer-container01 {
    display: block;
  }
  .footer-logo {
    width: 100%;
  }
  .footer-container {
      display: none;
  }

  .footer-head {
      grid-column: 1/3;
  }

  .footer-caption br {
      display: none;
  }
}

p.copyright {
  text-align: center;
  color: #fff;
  margin-top: 1rem;
}



@media screen and (max-width: 768px) {
  .footer,.footer02 {
    padding: 1rem 1rem 1rem;
  }

 .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 414px;
    margin-bottom: 1rem;
  }

  div.logo {
    margin-bottom: 1.5rem;
  }
}
