@charset "UTD-8";
@import url(sanitize.css);

html {
    font-size: 100%;
    scroll-behavior: smooth;
    font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-weight: bold;
    scroll-padding-top: 110px;
}

html img {
    width: 100%;
    height: auto;

}

.visual img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.visual {
    position: fixed;
    /* スライドの画像を固定 */
    top: 0;
    left: 0;
    right: 0;
    /* 上下左右どこにも隙間をなくす */
    z-index: -1;
    /* スライド画像を後ろに */
}

/* header------------------------------------------------- */
.wpaper {
    max-width: 375px;
    width: 100%;
}

header {
    margin: 0 auto;
    position: fixed;
    top: 0;
    /* 真ん中寄せ */
    inset: 0;
    /* max-width: 375px; */
    /* width: 100%; */
    height: 80px;
    /* border: 4px solid blue; */
    z-index: 20;
    background-color: rgba(255, 255, 255, 0.7);
}

.navi {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    /* align-items: center; */
}

.navi h1 {
    margin: 0;
}

nav {
    display: block;
    position: fixed;
    background-color: #fff;
    /* width: 375px; */
    top: 1000px;
    /* 画面外に追い出す */
    /* left: -300px; */
    bottom: 0;
    /* 要素を遅らせる */
    /* https://www.asobou.co.jp/blog/web/css-animation3 */
    transition: all 0.5s;
    z-index: 3;
    /* opacityとは要素の不透明度
    https://developer.mozilla.org/ja/docs/Web/CSS/opacity
    */
    opacity: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.open nav {
    /* 左の画面-300の距離にいたものを0にして戻してあげる */
    /* left: 0; */
    top: 0;
    /* 不透明度100％ */
    opacity: 0.8;
    margin: 0 auto;
    inset: 0;
}

.nav_logo a img {
 margin: 5px 0;
}

/* .inner {
    padding: 25px;
} */

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

.list_center li {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

/* .list_center li:nth-last-child(){
    border-style: none;
} */

.list_center {
    text-align: center;
    padding: 15px;
    text-decoration: none;
    margin: 20px 0;
}

.nav_logo {
    width: 70px;
    height: auto;
}

.list_center a {
    /* aタグはインライン要素 */
    display: block;
    /* アンダーライン消す */
    text-decoration: none;
    color: #333;
    padding: 1rem;
    /* どれくらい遅らせるか */
    text-decoration: 0.2s;
    transition: all 0.5s;
}

.list_center a:hover {
    /* background-color: #e4e4e4; */
    background-color: #272B7D;
    color: #fff;
    font-size: 1.2rem;
}

#navArea {
    height: 0;
}

/* 3本線 */
.toggle-btn {
    display: block;
    position: relative;
    top: 20px;
    /* right: 30px; */
    width: 30px;
    height: 30px;
    z-index: 3;
    /* カーソルを手にする */
    cursor: pointer;
    margin-right: 15px;
}

.toggle-btn span {
    position: absolute;
    /* インラインをブロックか */
    display: block;
    /* トグルボタンを親にして左の位置の0に指定 */
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
    border-radius: 4px;
}

/* ハンバーガーメニュー */
.toggle-btn span:nth-child(1) {
    top: 4px;
}

.toggle-btn span:nth-child(2) {
    top: 14px;
}

.toggle-btn span:nth-child(3) {
    bottom: 4px;
}

/* バッテン */
.open .toggle-btn span {
    background-color: black;
}

.open .toggle-btn span:nth-child(1) {
    /* 10ピクセル下に下げる 315度回転させる*/
    transform: translateY(10px) rotate(-315deg);
}

.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
    /* 315度回転させる*/
    transform: translateY(-10px) rotate(315deg);
}

/* マスク */
#mask {
    display: none;
    transition: all 0.5s;
}

.open #mask {
    display: block;
    background-color: #000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    cursor: pointer;
}

/* 真ん中のモバイル部分------------------------------------------------ */
section {
    padding: 30px 0;
}

.mobile {
    top: 0;
    position: relative;
    margin: 0 auto;
    background-color: #FFFEF0;
    /* width: 375px; */
    /* height: 500vh; */
    height: auto;
    padding: 0 10px;
}

.logo_main {
    margin: 0 auto;
    position: relative;
    /* border: 4px solid blue; */
    top: 100px;
    width: 150px;
    height: 150px;

}

h1,h2,h3 {
    text-align: center;
    margin: 0;
}

p {
    padding: 10px;
}

.section_01 {
    margin-top: 140px;
}

.section_02 {
    text-align: center;
    padding: 0;
}

.sec_05_img img {
    margin-bottom: 20px;
}

.product_list {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.section_06 p {
    text-align: center;
    margin: 0;
}

.section_06 {
    padding: 0;
}

.product_list li {
    list-style: none;
   padding: 20px 0;
}

.product_list h3 {
    margin: 0.5rem 0 0;
}

.product_list li p {
    text-align: left;
}

.store_info {
    padding: 0;
}

.iframeWrap {
    text-align: center;
    margin: 0 auto;
    width: 335px;
    height: 335px;
    /* border: 4px solid green; */
}

.access {
    padding: 0;
}

.inq_btn {
    /* padding: 30px 0; */
}


.inq_btn a {
    border: 3px solid #272B7D;
    display: block;
    padding: 15px 15px;
    text-align: center;
    background-color: #fff;
    width: 200px;
    /* height: 40px; */
    /* line-height: 40px; */
    margin: 0 auto;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 1s ease-in-out;
    transition: color 1s ease-in-out;
}

.inq_btn a:hover {
    background-color: #272B7D;
    color: #fff;
}


/* map */
iframe {
    border: none;
    margin: 0px;
    width: 335px;
    height: 335px;
    overflow: hidden;
    margin: 0 auto;
}

/* .iframeWrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

/*==================================================
ふわっ
===================================*/
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s, transform 1s;
}

.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

/* top_btn -------------------------------- */
.top_btn_area {
    /* width: 375px; */
    height: 80px;
    margin: 0 auto;
    position: fixed;
    /* inset: 0; */
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 5;
}

.top_btn {
    display: inline-block;
    text-align: center;
    line-height: 60px;
    position: absolute;
    border-radius: 50px;

    bottom: 20px;
    right: 20px;
    opacity: 0.8;
    /* z-index: 100; */
    width: 60px;
    height: 60px;
    background-color: #272B7D;

}

.top_btn a{
    text-decoration: none;
    font-weight: bolder;
    font-size: 1.2rem;
    color: #FFFEF0;
    cursor: pointer;
}

.top_btn:hover {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
}

@keyframes updown1 {
    0% {
      transform: translateY(15);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0);
    }
  }



/* --------------------------------- */
.footer {
    /* max-width: 375px; */
    margin: 0 auto;
    /* width: 100%; */
    height: 150px;
    background-color: #FFFEF0;
    text-align: center;

}

.footer .sns_list {
    width: 150px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    padding: 30px 0;
    justify-content: space-around;
}

.footer .sns_list li {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.list_center .sns_list {
    width: 250px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    padding: 30px 0;
    justify-content: space-around;
}

.list_center .sns_list li {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: none;
}

.footer small {
    display: inline-block;
    /* padding-top: 75px; */
}

/* form */
.w100 input ,.w100 textarea,#contact_id {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    line-height: 2;
}


table {
    border: black 1px   solid;
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.form_item {
    background-color: #eee;
    /* background-color: #A6703B; */
    text-align: left;
    width: 30%;
}

.form_body{
    width: 70%;
}

.w100 input ,.w100 textarea,#contact_id {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    line-height: 2;
}

#contact_id {
    padding: 15px;
    cursor: pointer;
}

.form_item,.form_body {
    padding: 10px;
    border: 1px solid #ccc;
}

textarea {
    resize: none;
}

td {
    /* border: rgb(71, 236, 208) 3px   solid; */
    text-align: left;
}


.sub_btn {
    margin: 0 auto 30px ;
    /* ベンダープレフィックスを追加している */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    display: block;
    /* background-color: #777; */
    background-color: #272B7D;
    color: #fff;
    width: 200px;
    padding: 15px;
    border-radius: 100vh;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    transition: all 0.5s;
}

.sub_btn:hover{
    /* background-color: #333; */
    opacity: 0.8;
}
.need {
    background-color: red;
    color: #fff;
    padding: 2px 3px;
    font-size: 0.7rem;
    margin-left: 5px;
}


/* .form_table {
    border:  3px solid seagreen;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.form_table label {
    padding-left: 5px;
}

.form_item,.form_body {
    padding: 10px;
    border: 1px solid #ccc;
}

.form_body {
    padding: 10px;
}

.w100 input {
    width: 100%;
    padding: 10px;
}

.need {
    background-color: red;
    color: #fff;
    padding: 2px 3px;
    font-size: 0.7rem;
    margin-left: 5px;
} */





/* レスポンシブ------------------------- */
@media (max-width:575px) {
	.wpaper {
		width: 100%;
        max-width: 100%;
	}
	/* 参考サイト神戸港クルーズ船ポータルサイトと同じ（幅575px以下の時に）左右に見える細いスライドをなくす */
 }