@charset "utf-8";

/*==================================================
google fonts
===================================*/
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/*==================================================
common
===================================*/
html {
    font-size: 62.5% !important;
}

body {
    font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-feature-settings: 'palt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.6rem;
    line-height: 1.8;
    -webkit-text-size-adjust: none;
    background: #fff;
    color: #000;
    border: 10px solid #000;
}
body#thanks {
border-color: #FFF;
}

a:link,
a:visited {
    color: #3a84df;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    background: #fff;
    transition-property: all;
    transition: 0.2s linear;
    cursor: pointer;
}

/* clearfix */
.cf:after {
    content: "";
    clear: both;
    display: block;
}


/*==================================================
base
===================================*/
#wrapper {
    background: #fff;
}

header{}
footer{
    margin: 100px 0 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

#thanks footer{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

section {
    width: 100%;
    margin-top: 150px;
}

.logo{
    text-align: center;
    margin: 120px 0 0;
}

.logo_img{
    width: 22vw;
}

.headline{
    text-align: center;
    margin-bottom: 50px;
    font-size: 5.5vw;
    font-weight: bold;
}
.headline img{
width: 40vw;
height: auto;
}

.txt_headline{
    width: 70vw;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.txt_headline span{
background-color: #f3f978c3;
display: inline-block;
}

.profile{
    width: 70vw;
    margin: 0 auto;
}

.name {
    font-weight: bold;
    padding: 40px 0;
}
.name_big{
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.4rem;
    line-height: 1.2;
}
.name_big a{
color: #000;
}
.name_small{
    font-size: 1.4rem;

}
.article{
    display: flex;
    /* background-color: #e600a9; */
    /* padding: 50px 0; */
}

.article .photoarea{
    /* background-color: aquamarine; */
    font-size: 0;
    margin-right: 50px;
}

.article .nenpyou{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
}
.article .nenpyou a{
text-decoration: underline;
color: #e600a9;
}
#Traveler .article .nenpyou a{
    color: #d39803;
}

.article .nenpyou li{
    /* background-color: yellow; */
      display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr;
  gap: 0px 20px;
  /* grid-template-areas:
    "aaaa aaa"; */
align-items: start;
    justify-content: start;
    padding-bottom: 10px;
}

/*==================================================
tab
===================================*/
.tab{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom:-10px;
}
.tab li{
    border-style:solid;
    border-width:10px;
    border-color:#000;
    border-bottom-width:0;
    margin-right:-10px;
}
.tab li a{
  display: block;
  background:#FFF;
  margin:0 2px;
  padding:10px 30px 15px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #000;
  font-weight: bold;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active{
    background:#fff;
    position:relative;
    z-index:1;
}
.tab li.active a{
    background:#fff;
    color: #e600a9;
}
.tab li.active.travel a{
    color: #d39803;
}
.tab li.active.contact a{
    color: #6bca96;
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  /* background: #c6b323; */

    border-style:solid;
    border-width:10px;
    border-color:#000;
    position:relative;
    z-index:0;
    border-right: none;
    border-bottom: none;
    border-left: none;
}

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

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*==================================================
form
===================================*/
.Form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    /* margin-top: 40px; */
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #6bca96;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 260px;
  display: block;
  letter-spacing: 0.05em;
  background: #6bca96;
  color: #000;
  font-weight: bold;
  font-size: 1.8rem;
  border: 2px solid #000;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}





/*==================================================
~~~~~~~thanks.html~~~~~~~
===================================*/
#thanks .msg{
    width: 50vw;
    margin: 0 auto;
}

#thanks .msg  .lineTrigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);

}

#thanks .msg  .lineinappear {
    padding: 50px;
    text-align: center;
    font-size: 2.6rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
    font-weight: bold;

}


/*==================================================
横からニョーーーン
===================================*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
    display: block;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #189af7;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

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

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

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger{
    opacity: 0;
}


/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger{
  position: relative; /* 枠線が書かれる基点*/
  opacity:0;
}

.lineTrigger.lineanime{
  animation-name:lineAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes lineAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
}
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after{
  position: absolute;
  content:"";
  width:0;
  height:8px;
  background:#000;/* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after{
  position: absolute;
  content:"";
  width: 8px;
  height:0;
  background:#000;/* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top:0;
  left:0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime .5s linear 0s forwards;/*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before{
  top:0;
  right:0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 .5s linear .5s forwards;/*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom:0;
  right:0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime .5s linear 1s forwards;/*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after{
  bottom:0;
  left:0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .5s linear 1.5s forwards;/*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {width:0%;}
    100%{width:100%;}
}

@keyframes lineAnime2 {
  0% {height:0%;}
    100%{height:100%;}
}

/*枠線内側の要素*/

.lineTrigger.lineanime .lineinappear{
  animation: lineInnerAnime .5s linear 1.5s forwards;/*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;/*初期値を透過0にする*/
}

@keyframes lineInnerAnime{
  0% {opacity:0;}
    100% {opacity:1;}
}


/* //tablet??// */
@media (max-width: 1280px) {
    .article{
    flex-wrap: wrap;
    justify-content: center;
}
.article .photoarea{
    /* width: 55vw; */
    margin-bottom: 40px;
    margin-right: 0;
}
}
/* //ちょっとtab対応// */
@media (max-width:650px) {
    .tab li {
        width: 100%;
    }
}


/* //smartphone// */
@media (max-width:767px) {
    /* body {
        font-size: 1.5rem
    }

    img {
        width: 100%;
        height: auto;
    } */
body{
    border-width: 6px;
}
.logo{
    margin-top: 60px;
}
.logo_img{
    width: 55vw;
}
.headline{
    font-size: 8vw;
    margin-bottom: 30px;
}
.headline img{
    width: 65vw;
}
section{
    margin-top: 60px;
}

.txt_headline{
    font-size: 1.4rem;
}

.article{
    flex-wrap: wrap;
    justify-content: center;
}

.article .photoarea{
    width: 55vw;
    margin-bottom: 40px;
    margin-right: 0;
}
.article .photoarea img{
    width: 100%;
}

.tab li{
    border-width: 6px;
    margin-right: -6px;
    margin-top: -6px;
}
.tab li a{
    padding: 10px 30px 10px;
    text-align: center;
}
.area{
        border-width: 6px;
            border-top: none;
}
.article .nenpyou{
    font-size: 1.3rem;
}
.name_big{
    font-size: 2.8rem;
}
.name_small{
    font-size: 1.2rem;
}
#thanks .msg{
    width: 65vw;
}
#thanks .msg .lineinappear{
    padding: 30px;
    font-size: 2rem;
}
}

/* //smartphone end// */
