@charset "utf-8";


/*=====全体設定=====================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,h2,h3,h4 {
  margin: 0;
  padding: 0;
  letter-spacing: .05em;
  color: #333;
}

p {
  font-size: 14px;
  color: #333;
}

@media screen and (min-width: 769px) {
  p {
    font-size: 15px;
  }
}

body,td {
  background-color: #f5db90;
  color: #eee;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.05em;
  text-align: justify;
}

.spaser40 {
  width: 100%;
  height: 40px;
}

.spaser80 {
  width: 100%;
  height: 80px;
}

@media screen and (min-width: 769px) {
  .spaserpc80 {
    width: 100%;
    height: 80px;
  }
}

.topH2 {
  font-size: 2rem;
  margin: 0 0 50px 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-shadow: 1.5px 1.5px 1.5px #f5db90;
}

h3 {
  text-shadow: 1.5px 1.5px 1.5px #f5db90;
}

.link {
  color: #3232FF;
  text-decoration: underline;
}

.letterSpacing0 {
  letter-spacing: 0;
}

.textAlignCenter {
  text-align: center;
}

.textAlignRight {
  text-align: right;
}

.textAlignLeft {
  text-align-last: left;
}

.textBold {
  font-weight: bold;
}

.paddingRight {
  padding-right: 10%;
}

.paddingLeft {
  padding-left: 4%;
}

.paddingLeft10 {
  padding-left: 10%;
}

.paddingLeft20 {
  padding-left: 20%;
}

.paddingLeft20r10 {
  padding: 0 10% 0 20%;
}

.padding10 {
  padding: 5rem 10%;
}

.padding10t0 {
  padding: 0 10% 5rem ;
}

.padding10tb30px {
  padding: 30px 10%;
}

.padding10b0 {
  padding: 5rem 10% 0;
}

.padding10tb0 {
  padding: 0 10%;
}

.paddingtb20 {
  padding: 20% 0;
}

.paddingt5b20 {
  padding: 5% 0 20%;
}

@media screen and (min-width: 769px) {
  .paddingtb20 {
    padding: 5% 0;
  }

  .maxWidth70vw {
    max-width: 70vw;
  }

  .m0auto {
    margin: 0 auto;
  }
}

.marginLeft10 {
  margin-left: 10%;
}

.marginRight10 {
  margin-right: 10%;
}
/*=====全体設定終わり=====================================================*/


/*=====汎用アニメーション ===================================*/
/*=========fadeUp==========================*/
.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
    transform: translate(0,0);
  }

  100% {
    opacity: 1;
    transform: translate(0,0);
  }
}


/*=============slideInLeft===================*/
.slideInLeftTrigger {
  opacity: 0;
}

.slideInLeft {
  animation-name: slideInLeftAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideInLeftAnime {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*=============slideInLeft===================*/
.slideInLeftTrigger2 {
  opacity: 0;
}

.slideInLeft2 {
  animation-name: slideInLeftAnime2;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideInLeftAnime2 {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*===========slideInRight=========================*/
.slideInRightTrigger {
  opacity: 0;
}

.slideInRight {
  animation-name: slideInRightAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideInRightAnime {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*=============汎用アニメーション終わり ===================================*/




/*================= ローディングアニメーションのCSS =================================*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100%;
z-index: 99999;
text-align:center;
color:#fff;
}

/* Loading画像中央配置　*/
#splash_text {
position: absolute;
top: 50%;
left: 50%;
  z-index: 99999;
transform: translate(-50%, -50%);
color: #fff;
width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
  height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #333;
  transition: all .2s cubic-bezier(.04, .435, .315, .9);
  transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
  transform: scaleY(0);
}
/*=====================================================================================*/


/*=========================ヘッダー=======================================================*/
#header{
  display: flex;
  align-items: center;
  width:100%;
  background: #db9b26;
  padding-left: 4%;
  height: 60px;
}

#header h1 {
  font-size: 1.3rem;
  font-family: 'Sawarabi Mincho', serif;
  color:#fff;
}

#header .AULISTitle {
  margin-right: 5px;
  font-family: 'Cormorant', serif;
  font-size: 1.65rem;
}

@media screen and (min-width: 769px) {
  #header{
    height: 70px;
  }

  #header h1 {
    font-size: 1.8rem;
  }

  #header .AULISTitle {
    font-size: 2.15rem;
  }  
}
/*=====================================================================================*/


/*================== バーガーメニューのためのCSS ===============*/
/*アクティブになったエリア*/
#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: #abb44e;/*サブメニュー背景色*/
  /*丸のスタート位置と形状*/
  transform: scale(0);/*scaleをはじめは0に*/
  right:-50px;
  top:-50px;
  transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
  display: none;/*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#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;
}
}

/*リストのレイアウト設定*/
#g-nav li{
text-align: center; 
list-style: none;
}

#g-nav li a{
color: #333;
text-decoration: none;
padding:10px;
display: block;
/* text-transform: uppercase; */
letter-spacing: 0.1em;
font-weight: bold;
}

/*========= ボタンのためのCSS(バーガーメニュー続き) ===============*/
.openbtn{
  display: flex;
  align-items: center;
  position:fixed;
  top:5px;
  right: 10px;
  z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
  line-height: 50px;
}

@media screen and (min-width: 769px) {
  .openbtn{
    top:10px;
  }
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #eee;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;	
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  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: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*================== バーガーメニュー終わり ========================*/


/*==============ヒーロースライドショー=================================================*/
#slider {
  width: 100%;
  height: 90vh;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  position: relative;
}

.sliderBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.sliderBlock h2 {
  max-width: 100%;
  color: #fff;
  font-size: 22px;
  font-family: 'La Belle Aurore', cursive;
  line-height: 2;
  letter-spacing: 0.05rem;
  text-shadow: 3px 3px 5px #000;
}

@media screen and (min-width: 769px) {
  .sliderBlock h2 {
    font-size: 28px;
  }  
}

.sliderBlock p {
  color: #fff;
  font-size: 22px;
  font-family: 'Baskervville', serif;
  line-height: 2;
  letter-spacing: 0.05rem;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  text-shadow: 3px 3px 5px #000;
}
/*==============ヒーロースライドショー終わり=============================================*/



/*===========ページトップアイコン========================*/
#pageTop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eee;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  color: #333;
  font-size: 20px;
  transition: all 0.3s;
}

#pageTop a:hover {
  background: #999;
  color: #fff;
}

/*リンクを右下に固定*/
#pageTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#pageTop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#pageTop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*===========ページトップアイコン終わり========================*/



/*============フッター======================================================================*/
footer {
  background-color: #db9b26;
  color: #fff;
  text-align: center;
  padding: 60px 0px;
}

.footerLogo {
  border-bottom: 1px solid #eee;
}

.footerLogo h1 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 3rem;
  font-family: 'Sawarabi Mincho', serif;
}

.footerLogo .AULISTitle {
  margin-right: 5px;
  font-size: 25.5px;
  font-family: 'Cormorant', serif;
}

.footerLogo p {
  display: block;
  margin: 25px 0;
  color: #fff;
}

.footerLogo p:nth-of-type(1) {
  margin-top: 50px;
}

.footerLogo p:nth-of-type(3) {
  margin-bottom: 0;
}

.footerUl li {
  margin-top: 10px;
}

.sns {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.sns div {
  margin: 0 10px;
}

.sns div,
.sns div a {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #333;
}

.footerSns {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.footerSns div {
  margin: 0 10px;
}

.footerSns div,
.footerSns div a {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #eee;
}

.fnavi {
  width: 50%;
  margin: 40px auto 60px;
}

.fnavi ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fnavi ul li a {
  color: #fff;
}

.fnavi ul li a:hover {
  color: #d4d4d4;
}

.copyrightWrap {
  padding-bottom: 80px;
}

.copyright {
  font-size: 0.8rem;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .sns {
    margin: 25px 0 50px;
  }

  .footerLogo h1 {
    font-size: 28px;
  }

  .footerLogo .AULISTitle {
    font-size: 31.5px;
  }
}
/*============フッター終わり======================================================================*/


/*===============ここからmain↓↓=========================*/
/* main {
  padding: 0;
  margin: 0;
} */

/*======About===========================*/
.bgc000About {
  background-color: #db9b26;
}

#about h3 {
  font-size: 1.4rem;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
}

#about .aboutText {
  margin-top: 40px;
}

#about .aboutText p {
  margin-top: 20px;
}

#about table th,
#about table td {
  padding: 20px;
  background-color: #f5db90;
  color: #000;
}


@media screen and (min-width: 769px) {
  #about .aboutText {
    margin-top: 40px;
    max-width: 80%;
  }
}

.aboutImgWrap {
  position: relative;
  margin-bottom: 170px;
}
.aboutImg {
  position: absolute;
  top: -35px;
  right: 0;
  background-image: url(images/Top/natalia-luchanko-04Nh3LC_EwM-unsplash.jpg);
  background-size: cover;
  background-position: top right;
  width: 60%;
  height: 200px;
}

@media screen and (min-width: 769px){
  .aboutImgWrap {
    margin-bottom: 30px;
  }

  .aboutImg {
    top: -250px;
    right: 0;
    background-size: cover;
    background-position:100px 0;
    background-repeat: no-repeat;
    width: 40%;
    height: 400px;
  }
}

/*======Service(TOP)=======================*/
#service {
  display: block;
  position: relative;
  overflow: hidden;
}

#service .serviceText p {
  margin-top: 20px;
}

#service .letterSpacing {
  letter-spacing: 0.1em;
}

#service ul li {
  color: #1a0b08;
}

#service .serviceContent h3 {
  margin-bottom: 20px;
}

/* mbのみt0 */
.bgc000Rightt0 {
  background-color: #db9b26;
  margin: 0 0 10% 10%;
  padding: 40px 10%;
}

.bgc000Right {
  background-color: #db9b26;
  margin: 10% 0 10% 10%;
  padding: 40px 10%;
}

.bgc000Left {
  background-color: #db9b26;
  margin: 0 10% 0 0;
  padding: 40px 10%;
}

@media screen and (min-width: 769px) {
  .bgc000Right {
    margin: 5% 0 5% 10%;
    padding: 80px 10%;
  }

/* mbのみt0 */
.bgc000Rightt0 {
  margin: 5% 0 5% 10%;
  padding: 40px 10%;
}

  .bgc000Left {
    margin: 5% 10% 5% 0;
    padding: 80px 10% 80px 20%;
  }
}


.btn {
  position: relative;
  display: inline-block;
  padding: 5px 40px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #555;
  background-color: #f5db90;
  transition: .2s;
  margin-top: 30px;
}

.btn span {
  position: relative;
  color: #555;
  z-index: 3;
}

.btn:hover span {
  color: #333;
}

.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e9c45c;/*btn：hoverホバー時*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#service .serviceImage {
  background-image: url(../images/Top/fikri-rasyid-ezeC8-clZSs-unsplash.jpg);
  width: 60%;
  height: 25vh;
  background-size: cover;
  background-position: 50% 10%;
  margin: 0 0 20% auto;
}

@media screen and (min-width: 769px) {
  #service .bg {
    position: absolute;
    top: 430px;
    left: 200px;
    height: 70vh;
    background-color: #000;
    z-index: -1;
  }

  /* #service p,
  #service .btn {
    margin-left: 40px;
  } */
  

  #service .serviceImage {
    margin: 0 0 0 auto;
    margin-top: 0;
    margin-bottom: 10%;
    height: 30vh;
    background-position: center;
  }
}


/************ServicePage******************/

#servicePage .serviceTitleImgWrap {
  position: relative;
}

#servicePage .serviceTitleImg {
  background-image: url(images/Top/brian-garcia-13VwsTt9pAw-unsplash.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 769px) {
  #servicePage .serviceTitleImg {
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
  }
}

#servicePage .flex {
  display: flex;
  align-items: center;
}

#servicePage .serviceIcon1 {
  background-image: url(images/Service/serviceIcon1.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
  color: #fff;
  margin-right: 20px;
}

#servicePage .serviceIcon2 {
  background-image: url(images/Service/serviceIcon2.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
  color: #fff;
  margin-right: 20px;
}

#servicePage .serviceIcon3 {
  background-image: url(images/Service/serviceIcon3.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
  color: #fff;
  margin-right: 20px;
}

#servicePage .servicePageH2 {
  font-size: 1.3rem;
  color: #444;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 1.5px 1.5px 1.5px #f5db90;
}

#servicePage .servicePageH2Price {
  font-size: 1.2rem;
  color: #444;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 1.5px 1.5px 1.5px #f5db90;
}


/* #servicePage .serviceContent {
  max-width: 90%;
  background-color: #000;
  padding: 30px 30px 30px 10%;
} */

#servicePage .serviceContent:nth-of-type(2) {
  margin: 60px 0;
  /* padding: 30px 10% 30px 30px; */
}

#servicePage .serviceContent p {
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  #servicePage .servicePageH2 {
    font-size: 1.5rem;
  }

  #servicePage .servicePageH2Price {
    font-size: 1.4rem;
  }

  #servicePage .serviceContent p {
    max-width: 70vw;
  }
}

#servicePage .price {
  text-align: center;
}

#servicePage .priceAfter {
  position: relative;
  margin-bottom: 100px;
}

#servicePage .priceAfter::after {
  position: absolute;
  content: '料金表';
  font-size: 1rem;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%,0);
}

#servicePage .servicePageH2After {
  position: relative;
  margin: 60px 0 40px;
}

@media screen and (min-width: 769px) {
  #servicePage .servicePageH2After {
    margin: 80px 0 40px;
  }
}

#servicePage .servicePageH2After::after {
  content: '';
  height: 2px;
  width: 50px;
  background-color: #abb44e;/*棒の色*/
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%,0);
}

#servicePage table {
  margin: 0 auto;
  width: 100%;
}

#servicePage table th {
  background-color: #abb44e;
  padding: 20px;
  margin-top: 10px;
  display: block;
  font-size: 1.05rem;
}

#servicePage table td {
  background-color: #db9b26;
  padding: 20px;
  display: block;
  border-bottom: 1px solid #eee;
}

#servicePage table td:nth-of-type(2) {
  text-align-last: left;
  font-size: 0.9rem;
}

@media screen and (min-width: 769px) {
  #servicePage table th,
  #servicePage table td {
    display: table-cell;
  }
}



/*=========News(TOP)================================*/
#news li,
#news li a {
  color: #333;
}

.newsImage {
  background-image: url(../images/Top/aulis3.jpg);
  background-size: cover;
  background-position: 50% 60%;
  width: 90%;
  height: 30vh;
}

@media screen and (min-width: 769px) {
  .newsImage {
    background-position: 0 580px;
    height: 40vh;
  }
}

/*=========News(ALL)================================*/
.newsAllTitleImgWrap {
  position: relative;
}

/*==========他ページでも使いまわし===========*/
.subPageTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-shadow: 3px 3px 5px #000;
  color: #fff;
}

.newsAllTitleImg {
  background-image: url(images/Top/soroush-karimi-wJdiukJ3oJs-unsplash.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 200px;
}

.newsAll a {
  display: block;
  transition: .3s ease-in-out;
}

/* .newsAll a:hover {
  background-color: #db9b26;
} */

.newsAllflex {
  display: flex;
  align-items: baseline;
  padding: 1rem 10px;
  border-bottom: 1px dotted #777;
}

.newsAllflex h3 {
  font-weight: 400;
  font-size: 1em;
  margin-left: 30px;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .newsAllTitleImg {
    height: 300px;
  }
  
  /* .newsAll a {
    max-width: 960px;
    margin: 0 auto;
  } */
}

/*=========News(各ページ)================================*/
#newsPage .newsTitleImgWrap {
  position: relative;
}

#newsPage .newsTitleImg {
  background-image: url(images/Top/debby-hudson-jcc8sxK2Adw-unsplash.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 200px;
}

#newsPage .newsText p {
  margin-top: 1rem;
}

#newsPage .newsText p:last-of-type {
  margin-top: 2rem;
}


@media screen and (min-width: 769px) {
  #newsPage .newsTitleImg {
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
  }
}

.newsContent {
  text-align: center;
}

.newsContent h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.newsImg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
}

.newsText {
  text-align: left;
  margin-top: 2em;
}

#newsPage .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#newsPage .taisyouchiku {
  display: inline-block;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
  padding: 20px;
  margin: 40px 0 20px;
}

#newsPage .taisyouchiku li {
  color: #333;
}


@media screen and (min-width:769px) {
  .newsContent h3 {
    margin-bottom: 2em;
    font-size: 1.3rem;
  }

  .newsImg {
    height: 600px;
    margin: 30px auto 0;
  }
}

/*==============ボタン(WORKSと共通)==================*/
.btnArea a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  /* color: #fff; */
  background-color: #e9c45c;
  width: 50%;
  margin: 0 0 0 auto;
  margin-top: 40px;
  margin-bottom: 50px;
  padding: 10px;
  position: relative;
  transition: .3s ease-in-out;
  border: 1px solid #555;
}

.btnArea a::after {
  content: "";
  width: 3px;
  height: 50px;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: .3s ease-in-out;
  background-color: #555;
  border: 1px solid #555;
}

.btnArea a:hover {
  background-color: #db9b26;
  color: #333;
  border: 1px solid #db9b26;

}

.btnArea a:hover::after {
  background-color: #333;
  border: 1px solid #333;
}

.btnWrap {
  padding: 0 20px;
} 

.btnTitle {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}

/* .btnTitle:hover {
  color: #fff;
} */

.btnSub {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #333;
}

@media screen and (min-width: 769px) {
  .btnArea {
    padding: 0 4% 0 10%;
    justify-content: space-between;
  }

  .btnArea a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    color: #eee;
    width: 30%;
    margin: 0 0 0 auto;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 30px 100px;
    position: relative;
    transition: .3s ease-in-out;
    border: 1px solid #eee;
}

.btnArea a::after {
  content: "";
  width: 3px;
  height: 60px;
  position: absolute;
  top: 30.6px;
  right: 50px;
  transition: .3s ease-in-out;
  background-color: #eee;
  border: 1px solid #eee;
}
}
/*========ボタン(WORKSと共通)ここまで===========*/

/*========Newsタブ(TOP)=================================*/
#topMain #news ul li{
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  #topMain #news ul li{
    font-size: 15px;
  }
}

.topH2 {
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  top: 1px;
  z-index: 1;
}

.tab li a {
  display: block;
  background: #abb44e;/*newstab背景色*/
  padding: 10px 20px;
}

.tab li:not(:first-of-type) {
  margin-left: 1px;
}


/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #db9b26;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
}


/*エリアの表示非表示と形状*/
.newsTab {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #db9b26;
  padding: 50px 30px;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.newsTab ul li time {
  display: block;
  width: 100px;
}

@media screen and (min-width: 769px) {
  .newsTab ul li {
    max-width: 60%;
  }  
}

.newsTab ul li:not(:first-of-type) {
  margin-top: 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.newsTab.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
  width: 100%;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/*========Newsタブ(TOP)ここまで=================================*/

/*========Access(TOP)==========================================*/
#access p {
  line-height: 2;
}

.googleMap {
  padding: 20px 0;
  /*上 右左 下*/
}

.googleMap iframe {
  width: 100%;
  height: 200px;
}

@media screen and (min-width:769px) {
  .googleMap iframe {
    width: 100%;
    height: 300px;
  }
}
/*========Access(TOP)ここまで==========================================*/



/******************Contact(TOP)**************************************/

/****** 入力画面 *********/
/* .contactWrap {
  padding: 5em 10%;
} */

#contact .contactImgWrap {
  position: relative;
}

#contact .contactImg {
  background-image: url(images/Works/worksTop.jpg);
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 200px;
}

.form {
  margin-top: 60px;
}

@media screen and (min-width: 769px) {
  #contact .contactImg {
    height: 400px;
  }
}

/* 入力フォームのフォントサイズを大きく */
input,textarea,label {
  font-size: 1.05rem;
}

/* テキストフィールドとメールアドレスフィールド */
.form p {
  margin: 0 0 30px 0;
  line-height: 1.9;
}

/* .required {
  margin-left: 10px;
  font-size: .875rem;
  color: #FF3232;
} */

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #747474;
}

select {
  -webkit-appearance: none;
  border: 1px solid #d8d8d8;
  padding: 4px 2rem 4px 4px;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #747474;
  line-height: 1.5;
}

#contact .labelComent {
  color: red;
  font-weight: normal;
  font-size: 1rem;
  margin-left: 15px;
}

.formBtn {
  margin: 90px 0;
  text-align: center;
}

#contact .inputBtn {
  background-color: #555;
  color: #fff;
}

input[type="submit"] {
  padding: 20px 30px;
  background-color: #eee;
  border: none;
  border-radius: 40px;
  color: #333;
}

input[type="submit"]:hover {
  opacity: .7;
}


/****** 確認画面 *********/
#contact label {
  font-weight: bold;
}

#contact .confirmTop {
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
}

@media screen and (min-width: 769px) {
  #contact .confirmTop {
    font-size: 1.1rem;
  }  
}

#contact .confirmContentWrap {
  background-color: #fff;
  margin: 20px 0;
  padding: 30px;
}

@media screen and (min-width: 769px) {
  #contact .confirmContentWrap {
    padding: 50px 200px;
  }  
}

#contact .confirmContent:not(:nth-of-type(1)) {
  margin-top: 30px;
}

#contact .confirmContent {
  font-size: 0.9rem;
}

#contact .confirmBtn1 {
  margin-right: 20px;
}

#contact .confirmBtn2 {
  background-color: #555;
  color: #fff;
}


/****** 完了画面 *********/
#contact .sendTop {
  text-align: center;
  font-size: 0.9rem;
  margin: 100px 0 0;
}

#contact .sendText {
  text-align: center;
  font-size: 0.9rem;
  margin: 30px 0 0;
}

#contact .sendBtnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 90px 0;
}  

#contact .sendBtn {
  background-color: #555;
  color: #fff;
  padding: 20px 30px;
  border-radius: 100vh;
}

#contact .sendBtn:hover {
  opacity: .7;
}

  
@media screen and (min-width: 769px) {
  #contact .sendTop,
  #contact .sendText {
    font-size: 1.1rem;
  }
}



/******************Contact(TOP)ここまで**************************************/



