@charset "UTF-8";

.container {
    width: 100%;
    background-color: lightyellow;
}

.header {
    width: 100%;
    height: 100px;
    display: flex;
    margin: 0 auto;
}

.header1 {
    width: 20%;
    padding-top: 15px;
}

.header1 img {
    width: 100%;
}

.header2 {
    width: 50%;
    margin-left: 30%;
    padding-top: 30px;
}

.header2 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.header2 a {
    text-decoration: none;
    color: #735202;
    font-weight: bolder;
}

.header2 a:hover {
    color: aqua;
}

.header2 img {
    width: 25px;
}

.top {
    width: 100%;
}

.top img {
    width: 100%;
}

.works {
    width: 100%;
    background-color: lightyellow;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -20px;
}

.works h2 {
    font-size: 80px;
    font-weight: bolder;
    color: #735202;
    text-align: center;
    padding-bottom: 40px;
}

.works a {
    text-decoration: none;
}

/* 6-1-7 スライドショー */


/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
    padding-bottom: 30px;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li:nth-child(n+4) {
    display: none;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/


/* ここまでスライドショー */

.slider img {
    width: 100%;
}

/* ボタン css stock */
.button-30 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #68addf;
    border-radius: 25px;
    background-color: #fff;
    color: #68addf;
    font-size: 1em;
}

.button-30:hover {
    animation: anima-button-30 1s;
}

@keyframes anima-button-30 {
    0% {
        box-shadow: 0 0 0 0 rgb(104 173 223 / 50%);
    }
    100% {
        box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
    }
}

.button-30::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #68addf;
    border-right: 2px solid #68addf;
    content: '';
}

/* ここまでボタン */





.about {
    width: 100%;
    background-image: url(../img/bluestripe.png);
    background-size: 100%;
    background-position: cover;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about h2 {
    font-size: 80px;
    font-weight: bolder;
    color: #735202;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.about a {
    text-decoration: none;
}

.about1 {
    width: 80%;
    height: 350px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 50px;
}

.about1 img {
    width: 100%;
    padding-left: 100px;
}

.about1 p {
    color: #735202;
    padding-right: 20%;
    padding-left: 20px;
    padding-top: 20px;
    white-space: nowrap;
    line-height: 1.9;
    font-size: 17px;
}

.about2 {
    width: 80%;
    display: flex;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-left: 80px;
}

.about2 p {
    color: #735202;
    padding-left: 10%;
    padding-top: 30px;
    line-height: 1.9;
    font-size: 17px;
}

.about2 img {
    width: 30%;
    padding-left: 10px;
    padding-right: 30px;
}

/* ボタン css stock */
.button-30 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #68addf;
    border-radius: 25px;
    background-color: #fff;
    color: #68addf;
    font-size: 1em;
}

.button-30:hover {
    animation: anima-button-30 1s;
}

@keyframes anima-button-30 {
    0% {
        box-shadow: 0 0 0 0 rgb(104 173 223 / 50%);
    }
    100% {
        box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
    }
}

.button-30::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #68addf;
    border-right: 2px solid #68addf;
    content: '';
}

/* ここまでボタン */


.service {
    width: 100%;
    margin: 0 auto;
    background-color: lightyellow;
    padding-top: 100px;
    padding-bottom: 100px;
}

.service h2 {
    font-size: 80px;
    font-weight: bolder;
    color: #735202;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.ser {
    display: flex;
    color: #735202;
    font-size: 18px;
    padding-bottom: 100px;
}

.ser li {
    justify-content: space-around;
    list-style: none;
    padding-left: 20%;
    line-height: 1.8;
}

.service1 {
    width: 50%;
    text-align: center;
    padding-left: 30px;
}

.service2 {
    width: 50%;
    text-align: center;
}

.service2 li {
    padding-right: 400px;
}



/* ボタン css stock */
.button-30 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #68addf;
    border-radius: 25px;
    background-color: #fff;
    color: #68addf;
    font-size: 1em;
}

.button-30:hover {
    animation: anima-button-30 1s;
}

@keyframes anima-button-30 {
    0% {
        box-shadow: 0 0 0 0 rgb(104 173 223 / 50%);
    }
    100% {
        box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
    }
}

.button-30::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #68addf;
    border-right: 2px solid #68addf;
    content: '';
}

.button a {
    text-decoration: none;
}

/* ここまでボタン */


.contact {
    width: 100%;
    text-align: center;
    position: relative;
    background-color: #c8e3f5;
    padding-bottom: 150px;
}

.contact h2 {
    font-size: 80px;
    font-weight: bolder;
    color: #735202;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact p {
    color: #735202;
    padding-bottom: 50px;
    font-size: 17px;
}

.contact img {
    width: 30%;
}

/* ボタン */
.button-10 {
    position: absolute;
    top: 470px;
    left: 605px;
    text-align: center;
}

.button-10 a {
  font-family: 'Noto Sans JP', serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #735202;
  font-weight: 700;
  /* border: solid 3px #333; */
  border-radius: 999px;
  display: flex;
  box-sizing: border-box;
  width: 220px;
  height: 220px;
  text-align: center; 
  align-items: center; 
  padding: 80px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  /* background-color: #c8e3f5; */
}

.button-10 a:hover {
  color: aqua;
  /* background: lightyellow; */
  transition: all 0.3s;
}

/* ここまでボタン */



.footer {
    width: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
}

.footer ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding-bottom: 50px;
    font-weight: bolder;
}

.footer a {
    text-decoration: none;
    color: #735202;
}

.footer a:hover {
    color: aqua;
}

.footer img {
    width: 25px;
}

.footer small {
    padding-left: 700px;
    color: #735202;
    font-size: 16px;
}