@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');



*,
*:before,
*:after {
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 font-feature-settings: "palt";
 letter-spacing: .1em;
}


.sp {
 display: none;
}

.tab {
 display: none;
}

.pc {
 display: block;
}

.sp-only {
 display: none;
}


body {
 margin: 0 auto;
 font-size: 16px;
 font-family: 'Roboto', 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ Pro", "Yu Gothic Medium", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium", YuGothic, "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", "ãƒ¡ã‚¤ãƒªã‚ª", sans-serif;
 font-feature-settings: "palt";
 background-repeat: repeat;
 transition: 0.3s;
 color: #383838;
 max-width: 2000px;

}

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


a {
 color: #ACD06B;
 text-decoration: underline;

}

a:hover {
 opacity: .8 transition: 0.3s;
}


.txt-link {
 text-align: center;
 font-weight: 500;
}

img {
 max-width: 100%;
}

p {
 margin-top: 30px;
 line-height: 1.7;
 color: #606060;
}

p.ex {
 margin-top: 0;
}

p.ex2 {
 margin-top: 40px;
}


p.ex3 {
 margin-top: 10px;
}

p.ex4 {
 margin-top: 20px;
}



.center {
 text-align: center;
}


.line {
 display: block;
 border-top: 1px solid #ddd;
 margin: 60px;
}

/*----------------------------*/


.nav-hmb {
 display: none;
}

.nav-hmb.under {
 display: none;
}

.main-visual {
 background-image: url(../img/top-background.jpg);
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 position: relative;
 width: 100%;
 overflow: hidden;
}

.main-visual .content-wrap {
 width: 90%;
 max-width: 1600px;
 /* 必要に応じて最大幅を指定 */
 margin: 0 auto;
 position: relative;
 aspect-ratio: 16 / 9;
 max-height: 100vh;
}

/* 古いブラウザ向けフォールバック */
@supports not (aspect-ratio: 16 / 9) {
 .main-visual .content-wrap {
  height: calc(100vw * 9 / 16);
 }
}

.main-visual.ex .content-wrap {
 height: 150px;
}


.main-visual img.kubo {
 width: 25%;
 position: absolute;
 bottom: 0;
 right: 12%;
}

.main-visual img.catch {
 width: 35%;
 position: absolute;
 top: 38%;
 left: 22%;
}


.main-visual.ex {
 height: 150px;

}

.main-visual.ex .content-wrap {
 aspect-ratio: inherit;
}





@keyframes fuwafuwa {

 0%,
 100% {
  transform: translateY(0);
 }

 50% {
  transform: translateY(-8px);
 }
}

.fuwafuwa {
 animation: 3s fuwafuwa infinite;
}

.fuwafuwa-2 {
 animation: 3s fuwafuwa infinite;
 animation-delay: 1s;
}

.fuwafuwa-3 {
 animation: 3s fuwafuwa infinite;
 animation-delay: 2s;
}


.main-visual .food {
 position: absolute;
}

.main-visual .pumpkin {
 width: 15%;
 top: 32%;
 left: 5%;
}

.main-visual .cone {
 width: 12%;
 top: 12%;
 left: 25%;
}

.main-visual .rice {
 width: 10%;
 right: 36%;
 top: 25%;
}

.main-visual .mushroom {
 width: 17%;
 right: -8%;
 top: 22%;
}

.main-visual .grape {
 width: 14%;
 right: -5%;
 bottom: 6%;
}

.main-visual .nuts {
 width: 15%;
 bottom: 5%;
 left: 42%;
}

.main-visual .carrot {
 width: 11%;
 bottom: 1%;
 left: 25%;
}

.main-visual .yuzu {
 width: 8%;
 bottom: 5%;
 left: 10%;
}

.main-visual .fish {
 width: 22%;
 top: 57%;
 left: -7%;
}


.header-nav {
 display: flex;
 padding: 20px;
 position: relative;
 z-index: 999;
}

.header-nav .logo {
 width: 170px;
}

.header-nav .logo.ex {
 width: 230px;
 padding-top: 5px;
}

.header-nav.ex .logo.ex {
 aspect-ratio: inherit;
}



.nav-bar-wrap {
 margin-left: auto;
}

.nav-bar {
 border-radius: 60px;
 background: #fff;
 height: 80px;
 display: flex;
 align-items: center;
 padding: 0 40px;
 box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);

}


.nav-bar .item {
 margin-right: 40px;
 display: flex;
 flex-direction: column;
 align-items: center;
 padding-top: 5px;
 text-decoration: none;
 transition: 0.3s;

}

.nav-bar .item:hover {
 transform: scale(1.05);
 transition: 0.3s;
}



.nav-bar .item:last-child {
 margin-right: 0;
}


.nav-bar .item .title {
 font-size: 14px;
 color: #383838;
 font-weight: 500;
 margin-bottom: 5px;
}


.nav-bar .item .sub {
 font-size: 12px;
}

.nav-bar .item:hover .sub {
 color: #ACD06B;
}

header .link {
 text-align: right;
 margin-top: 10px;
}


header .link a {
 font-size: 13px;
 color: #666;
 text-decoration: none;
 margin-left: 10px;
 font-weight: 300;
 padding-right: 10px;
}







/*----------------------------*/

.btn-contact {
 width: 100px;
 height: 100px;
 border-radius: 60px;
 background: #ACD06B;
 margin-left: 30px;
 display: flex;
 justify-content: center;
 align-items: center;
 box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
 transition: 0.3s;
 text-decoration: none;
}


.btn-contact.ex {
 margin-right: 60px;
 margin-left: 0;
}



.btn-contact:hover {
 transform: scale(1.1);
 transition: 0.3s;

}

.btn-contact .inner {
 display: flex;
 flex-direction: column;
 align-items: center;
}


.btn-contact img {
 display: block;
 width: 30px;
}

.btn-contact span {
 display: block;
 color: #fff;
 font-size: 13px;
 font-weight: 600;
 margin-top: 8px;
 letter-spacing: 0.5px;
}

.btn-contact:hover span {}

/*----------*/


.btn-1 {
 display: block;
 width: 230px;
 height: 60px;
 background: #ACD06B;
 border-radius: 50px;
 margin-top: 30px;
 color: #fff;
 font-weight: 500;
 text-align: center;
 line-height: 60px;
 text-decoration: none;
 transition: 0.3s;
}

.btn-1.large {
 display: block;
 width: 430px;
 height: 70px;
 line-height: 70px;
 font-size: 20px;
}


.btn-1.ex {
 margin: 0 auto;
}


.btn-1.ex2 {
 margin: 0 auto;
 margin-top: 60px;
}


.btn-1 i {
 padding-left: 5px;
 transition: 0.3s;
}

.btn-1:hover {
 opacity: 1;
 background: #556C2B;
 color: #fff;
 transform: scale(1.05);
}

.btn-1.ex:hover {
 opacity: 1;
 background: #556C2B;
 color: #fff;
 transform: scale(1.05);
}


.btn-1.ex2:hover {
 opacity: 1;
 background: #556C2B;
 color: #fff;
 transform: scale(1.05);
}




.btn-1:hover i {
 transform: translate(5px);
 transition: 0.3s;
}



/*----------------------------*/

.bnr-taidan {
 width: 800px;
 display: flex;
 margin: 0 auto;
 transition: 0.5s;
}

.bnr-taidan:hover {
 transform: translate(0, 5px);
 transition: 0.5s;
}



.bnr-taidan .item {
 width: 50%;
}

.bnr-taidan img {
 border-radius: 30px 0 0 30px;
 box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
}


.bnr-taidan .info {
 background: #ACD06B;
 border-radius: 0 30px 30px 0;
 box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
 text-align-last: center;
 display: flex;
 align-items: center;
 justify-content: center;
}

.bnr-taidan .info span:nth-child(1) {
 display: block;
 font-weight: 500;
 margin-bottom: 10px;
 font-size: 20px;
}

.bnr-taidan .info span:nth-child(2) {
 display: block;
 font-weight: 500;
 margin-bottom: 10px;
}

.bnr-taidan .info h2 {
 display: block;
 font-weight: 600;
 margin-bottom: 20px;
 font-size: 28px;
 font-family: serif;
}


.bnr-taidan .info a {
 color: #383838;
 font-weight: 600;
 text-decoration: underline;
}

/*----------------------------*/

section {
 padding: 60px 0;
}

section.ex {
 padding: 0;
}

section.ex2 {
 padding: 100px 0;
}

section.ex3 {
 padding-bottom: 0;
}

section.ex4 {
 padding-top: 30px;
}



.basic-box {
 width: 1000px;
 margin: 0 auto;
}


.txt-box {
 width: 550px;
 margin: 60px auto;
}





.column-box {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.column-box .tn {
 width: 55%;
}

.column-box .info {
 width: 45%;
 padding: 60px;
}





.soudan-index {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.soudan-index .tn {
 width: 55%;
}

.soudan-index .info {
 width: 45%;
 padding: 60px;
}


.gray {
 background: #FAFAFA;
}


.about-full {
 background-image: url(../img/about-background.jpg);
 background-size: 130%;
 background-position: 30% 50%;
 height: 500px;
 display: flex;
 align-items: center;
 padding: 60px;
}


.about-full p {
 max-width: 55%;
}



/*----------------------------*/

.title-leaf {
 text-align: center;
 margin-bottom: 45px;
}

.title-leaf .inner {
 display: inline-block;
 text-align: center;
}

.title-leaf .info {
 display: flex;
 align-items: center;
}

.title-leaf img {
 width: 36px;
}

.title-leaf.ex img {
 width: 50px;
}


.title-leaf .title {
 margin: 0 20px;
 text-align: center;
}


.title-leaf.ex .title {
 margin: 0 40px;
 text-align: center;
}


.title-leaf .title h2 {
 font-size: 24px;
 font-weight: 600;
 margin-bottom: 4px;
 font-family: serif;
}


.title-leaf.ex .title h1 {
 font-size: 40px;
 font-weight: 600;
 margin-bottom: 4px;
 font-family: serif;
}

.title-leaf .title span {
 font-size: 14px;
 font-weight: 500;
 color: #CECECE;
}


.title-leaf.ex .title span {
 font-size: 14px;
 display: block;
 margin-top: 10px;
}



/*------*/


.title-flag {
 position: relative;
 margin-bottom: 30px;
}

.title-flag img {
 width: 330px;
}

.title-flag span {
 position: absolute;
 left: 80px;
 font-weight: 500;
}


.title-flag h2 {
 position: absolute;
 left: 80px;
 bottom: 12px;
 font-size: 22px;
 font-weight: 500;
}

/*------*/


.title-1 {
 font-size: 42px;
 font-family: serif;
}


.title-2 {
 display: inline;
 font-size: 28px;
 font-weight: 500;
 font-family: serif;
 padding-bottom: 5px;
 border-bottom: 4px solid #ACD06B;
}

.title-3 {
 font-size: 35px;
 font-family: serif;
}


.title-4 {
 font-size: 22px;
 font-family: serif;
}

.title-4 span {
 font-size: 17px;
}

.title-5 {
 font-size: 18px;
 font-family: serif;
}



/*----------------------------*/

.news-list {
 width: 650px;
 margin: 0 auto;
}

.news-list li {
 display: flex;
 margin-bottom: 30px;
 line-height: 1.5;
}


.news-list li span:first-child {
 font-weight: 600;
 margin-right: 20px;
}



/*----------------------------*/

.uchiwake-wrap {
 margin-top: 60px;
}

.uchiwake-wrap.ex {
 margin-top: 80px;
}

.uchiwake-box {
 display: flex;
 justify-content: space-between;
 width: 1000px;
 margin: 60px auto;
}


.uchiwake-box .item {
 width: 21.5%;
}

.uchiwake-box img {
 margin-bottom: 20px;
}



.uchiwake-box p {
 font-size: 14px;
}

/*----------------------------*/


.kouka-wrap {
 margin-top: 100px;
}

.kouka-box {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 width: 1000px;
 margin: 60px auto;

}


.kouka-box .item {
 width: 250px;
 margin-right: 50px;
 margin-bottom: 50px;
}

.kouka-box .item :nth-child(3) {
 margin-right: 0;
}

.kouka-box .item :last-child {
 margin-right: 0;
}




.kouka-box p {
 font-size: 18px;
 font-weight: 500;
}




/*----------------------------*/

.gatagata-wrap {
 margin-top: 60px;
}

.gatagata-box {
 display: flex;
 justify-content: space-between;
 width: 1000px;
 margin: 60px auto;
 margin-bottom: 0;
}


.gatagata-box .item {
 width: 20%;
 text-align: center;
}


.gatagata-box i {
 font-size: 80px;
 margin-bottom: 30px;
 color: #ACD06B;
}

.gatagata-box p {
 font-size: 14px;
 margin-top: 20px;
 text-align: left
}



/*----------------------------*/


.other-box {
 width: 1000px;
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 margin-bottom: 60px;
}

.other-box .item {
 width: 200px;
}

.other-box .tn {
 border-radius: 100px;
 height: 200px;
 background: gray;
 margin-bottom: 20px;
 background-size: cover;
}

.other-box .tn.one {
 background-image: url(../img/tn-kensa.jpg);
 background-position: 0% 50%;
}

.other-box .tn.two {
 background-image: url(../img/tn-kouza.jpg);
 background-position: 0% 50%;
}

.other-box .tn.three {
 background-image: url(../img/service-shokuhin.jpg);
 background-position: 50% 50%;
}

.other-box .tn.four {
 background-image: url(../img/service-consul.jpg);
 background-position: 50% 50%;
}




/*----------------------------*/


.profile-box {
 width: 1100px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.profile-box.ex {
 width: 900px;
}


.profile-box .tn {
 width: 45%;
}

.profile-box .info {
 width: 50%;
}

/*----------------------------*/


.service-box {
 width: 900px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
}


.service-box .tn {
 width: 350px;
 height: 350px;
 background: gray;
 border-radius: 2000px;
 background-size: cover;
}


.service-box .tn.one {
 background-image: url(../img/tn-soudan.jpg);
 background-position: 0% 50%
}


.service-box .tn.two {
 background-image: url(../img/tn-kensa.jpg);
 background-position: 50% 50%
}


.service-box .tn.three {
 background-image: url(../img/tn-kouza.jpg);
 background-position: 50% 50%
}


.service-box .tn.four {
 background-image: url(../img/service-shokuhin.jpg);
 background-position: 50% 50%
}



.service-box .tn.five {
 background-image: url(../img/service-consul.jpg);
 background-position: 50% 50%
}



.service-box .info {
 width: 50%;
}

.price-box {
 width: 300px;
 height: 60px;
 line-height: 60px;
 text-align: center;
 border: 1px solid #383838;
 margin-top: 30px;
 font-size: 18px;
 font-weight: 600;
 font-family: serif;
}

.price-box span {
 font-size: 30px;
 letter-spacing: 0;
}


/*----------------------------*/

.keireki-wrap {
 width: 800px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 60px 0;
 border-top: 1px solid #ddd;
 border-bottom: 1px solid #ddd;
}


.keireki-wrap .tn {
 width: 250px;
 height: 250px;
 background: gray;
}



.keireki-box {
 margin-top: 20px;
}

.keireki-list {
 margin-top: 15px;
}


.keireki-list .item {
 display: flex;
 margin-bottom: 10px;
}

.keireki-list .item span:first-child {
 font-size: 14px;
 font-weight: 500;
 margin-right: 10px;
}

.keireki-list .item span:last-child {
 font-size: 14px;
}


/*----------------------------*/

.shokuiku-box {
 display: flex;
 width: 900px;
 align-items: center;
 margin: 0 auto;
 justify-content: space-between;
}

.shokuiku-box .tn {
 width: 320px;
 background: gray;
 height: 320px;
 border-radius: 160px;
 margin-bottom: 50px;
 background-image: url(../img/tn-soudan.jpg);
 background-size: cover;
 background-position: 30% 50%
}



.shokuiku-box .info {
 width: 530px;
}


/*----------------------------*/


.service-list {
 width: 1100px;
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 margin-bottom: 60px;
}

.service-list .item {
 width: 20%
}

.service-list .tn {
 width: 130px;
 height: 130px;
 border-radius: 100px;
 background: gray;
 margin: 0 auto;
 margin-bottom: 20px;
 background-size: cover;
}


.service-list .tn.one {
 background-image: url(../img/tn-soudan.jpg);
 background-position: 0% 50%;
}


.service-list .tn.two {
 background-image: url(../img/tn-kensa.jpg);
 background-position: 0% 50%;
}


.service-list .tn.three {
 background-image: url(../img/tn-kouza.jpg);
 background-position: 0% 50%;
}

.service-list .tn.four {
 background-image: url(../img/service-shokuhin.jpg);
 background-position: 50% 50%;
}

.service-list .tn.five {
 background-image: url(../img/service-consul.jpg);
 background-position: 50% 50%;
}





/*----------------------------*/

.ptn-box {
 width: 1100px;
 justify-content: center;
 margin: 0 auto;
 margin-top: 60px;
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
}


.ptn-box .item {
 width: 41%;
 margin-right: 5%;
 border: 3px solid gray;
 padding: 30px 45px;
 margin-bottom: 30px;
}


.ptn-box .item:nth-child(2) {
 margin-right: 0;
}


.ptn-box h3 {
 text-align: center;
 margin-bottom: 20px;
}


.ptn-box .txt {
 padding: 30px 0;
 border-top: 2px solid gray;
 border-bottom: 2px solid gray;
}


.ptn-box p {
 margin-top: 20px;
}

.ptn-box p.ex {
 margin-top: 0;
}

.ptn-box .price {
 text-align: center;
 margin-top: 0;
 margin-top: 20px;
 font-size: 18px;
 font-weight: 600;
 font-family: serif;
}

.ptn-box .price span {
 font-size: 26px;
 letter-spacing: 0;
}


.ptn-box .sub {
 text-align: center;
 font-size: 15px;
 letter-spacing: 0;
 margin-top: 5px;
 font-weight: 500;
}






/*----------------------------*/

footer {
 background-image: url(../img/top-background.jpg);
 background-size: cover;
 padding: 45px;
 display: flex;
 align-items: center;
}


footer .logo {
 width: 280px;
}


.footer-nav-wrap {
 margin-left: auto;
 margin-right: 30px;
}


.footer-nav {
 display: flex;
 align-items: center;

}


.footer-nav .item {
 margin-right: 40px;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-decoration: none;
}

.footer-nav .item:last-child {
 margin-right: 0;
}


.footer-nav .item span:first-child {
 color: #383838;
 font-weight: 500;
 margin-bottom: 5px;
 font-size: 14px;
}

.footer-nav .item span:last-child {
 font-size: 11px;
}


footer .link {
 text-align: right;
 margin-top: 10px;

}


footer .link a {
 font-size: 13px;
 color: #666;
 text-decoration: none;
 margin-left: 10px;
 font-weight: 300;
}


/*----------------------------*/



form {
 width: 850px;
 margin: 50px auto;
 margin-bottom: 0;
}

form label {
 width: 50%;
 background: #556C2B;
 text-align: center;
 line-height: 60px;
 font-weight: 500;
 display: flex;
 justify-content: center;
 align-items: center;
 color: #fff;
}

form .item {
 display: flex;
 flex-wrap: wrap;
 height: auto;
 align-items: center;
 margin: 0 auto;
 margin-bottom: 20px;
}


form .error {
 color: red;
}

form .error:last-child {
 margin-top: 10px;
 height: auto;
}





.item.message,
.item.radio {
 align-items: flex-start;
 height: auto;
}

label.radio {
 height: 250px;
}

label.message {
 height: 250px;
}

form input {
 width: 50%;
 height: 60px;
 border: 1px solid #ddd;
 padding: 10px 20px;
 line-height: 50px;
}

textarea {
 width: 50%;
 height: 250px;
 border: 1px solid #ddd;
 padding: 10px 20px;
}


::placeholder {
 color: #bbb;
}

.radio .inner {
 width: 50%;
 height: 250px;
 font-weight: 500;
}

.radio .inner {
 display: flex;
 flex-direction: column;
 width: 50%;
 border: 1px solid #ddd;
 padding: 20px;
}

.radio span {
 margin-left: 5px;
}

.check {
 width: 20px;
 border: none;
}

.radio .inner div {
 display: flex;
 height: 40px;
 align-items: center;
}


.btn-form {
 display: block;
 height: 60px;
 line-height: 60px;
 width: 300px;
 text-align: center;
 background: #556C2B;
 color: #fff;
 border-radius: 50px;
 font-weight: 500;
 margin: 45px auto;
 font-size: 18px;
}

.btn-form i {
 font-size: 19px;
 margin-right: 10px;
}


/*----------------------------*/


table {
 width: 600px;
 margin: 50px auto;
}


table tr {
 border-bottom: 1px solid #ddd;
}

table td {
 padding-top: 25px;
 padding-bottom: 25px;
 line-height: 1.8;
 letter-spacing: 1.5px;
}

table td:first-child {
 width: 35%;
 vertical-align: middle;
 text-align: center;
 font-weight: 600;
 color: #ACD06B;
}

table p:first-child {
 margin-top: 0;
}


/*----------------------------*/


.privacy-box {
 width: 650px;
 margin: 45px auto;
}

.privacy-box .item {
 margin-top: 50px;
}

.privacy-box p {
 margin-top: 20px;
}

/*----------------------------*/










/*----------------------------*/

.anm-fade_up,
.anm-fade_left,
.anm-fade_right,
.anm-fade_down {
 opacity: 0;
}

.animated {
 opacity: 1;
}

.anm-fade_up {
 transform: translateY(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_left {
 transform: translateX(-30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_right {
 transform: translateX(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_down {
 transform: translateY(-30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated.anm-fade_up,
.animated.anm-fade_left,
.animated.anm-fade_right,
.animated.anm-fade_down {
 transform: translateY(0);

}

.animated.anm-fade_left {
 transform: translateX(0);
}

.animated.anm-fade_right {
 transform: translateX(0);
}

.animated.anm-fade_down {
 transform: translateY(0);
}



.anm-fade_up.two,
.anm-fade_left.two,
.anm-fade_right.two,
.anm-fade_down.two {
 -moz-transition-delay: 200ms;
 -webkit-transition-delay: 200ms;
 -o-transition-delay: 200ms;
 -ms-transition-delay: 200ms;
}


.anm-fade_up.three,
.anm-fade_left.three,
.anm-fade_right.three,
.anm-fade_down.three {
 -moz-transition-delay: 300ms;
 -webkit-transition-delay: 300ms;
 -o-transition-delay: 300ms;
 -ms-transition-delay: 300ms;
}

.anm-fade_up.four,
.anm-fade_left.four,
.anm-fade_right.four,
.anm-fade_down.four {
 -moz-transition-delay: 400ms;
 -webkit-transition-delay: 400ms;
 -o-transition-delay: 400ms;
 -ms-transition-delay: 400ms;
}

.anm-fade_up.five,
.anm-fade_left.five,
.anm-fade_right.five,
.anm-fade_down.five {
 -moz-transition-delay: 500ms;
 -webkit-transition-delay: 500ms;
 -o-transition-delay: 500ms;
 -ms-transition-delay: 500ms;
}

.anm-fade_up.six,
.anm-fade_left.six,
.anm-fade_right.six,
.anm-fade_down.six {
 -moz-transition-delay: 600ms;
 -webkit-transition-delay: 600ms;
 -o-transition-delay: 600ms;
 -ms-transition-delay: 600ms;
}

.anm-fade_up.seven,
.anm-fade_left.seven,
.anm-fade_right.seven,
.anm-fade_down.seven {
 -moz-transition-delay: 700ms;
 -webkit-transition-delay: 700ms;
 -o-transition-delay: 700ms;
 -ms-transition-delay: 700ms;
}

.anm-fade_up.eight,
.anm-fade_left.eight,
.anm-fade_right.eight,
.anm-fade_down.eight {
 -moz-transition-delay: 800ms;
 -webkit-transition-delay: 800ms;
 -o-transition-delay: 800ms;
 -ms-transition-delay: 800ms;
}

.anm-fade_up.nine,
.anm-fade_left.nine,
.anm-fade_right.nine,
.anm-fade_down.nine {
 -moz-transition-delay: 900ms;
 -webkit-transition-delay: 900ms;
 -o-transition-delay: 900ms;
 -ms-transition-delay: 900ms;
}

.anm-fade_up.ten,
.anm-fade_left.ten,
.anm-fade_right.ten,
.anm-fade_down.ten {
 -moz-transition-delay: 1000ms;
 -webkit-transition-delay: 1000ms;
 -o-transition-delay: 1000ms;
 -ms-transition-delay: 1000ms;
}




/*----------------------------*/




.teaser {
 background: #E3D9C4;
 width: 100%;
 height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
}


.teaser .inner {
 width: 400px;
 height: auto;
 display: flex;
 flex-direction: column;
 align-items: center;
}


.teaser .logo {
 width: 300px;
}



.teaser .taidan {
 margin-top: 50px;
}

.teaser p {
 text-align: center;
 font-weight: 500;
 color: #000;
 margin-top: 5px;
}

.teaser a {
 text-align: center;
 color: orange;
 text-decoration: underline;
}


/*----------------------------*/


.grecaptcha-badge {
 visibility: hidden;
}





/*----------------------------*/

.under-line {
 position: relative;
 display: inline-block;
 text-decoration: none;
}

.under-line.ex {
 position: relative;
 display: inline-block;
 text-decoration: none;
}

.under-line::after {
 position: absolute;
 bottom: -42px;
 left: 0;
 content: '';
 width: 100%;
 height: 4px;
 background: #E3D9C4;
 transform: scale(0, 1);
 transform-origin: center top;
 transition: transform .2s;
}

.under-line.ex::after {
 background: #000;
}

.under-line:hover::after {
 transform: scale(1, 1);
}

#pageTop {
 position: fixed;
 bottom: 30px;
 right: 30px;
 z-index: 9999;
}

#pageTop a {
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 0;
 padding: 0;
 width: 38px;
}
