/*************CSSの初期設定*************/

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: auto;
    font-size: 3.125vw;
}

@media screen and (min-width: 768px) {
    html {
        font-size: 10px;
    }
}

html,
body {
    max-width: 100vw;
}

/*ローディング有無設定*/
body {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow-x: hidden;
    /* height: 100%; */
}

body.omj-awre-with-loading {
    height: 100vh;
    overflow: hidden;
}

body.omj-awre-with-loading.omj-awre-show {
    overflow: visible;
    overflow-x: hidden;
    height: 100%;
}

.initial {
    transform: unset !important;
    transition: none !important;
}

a {
    color: inherit;
    text-decoration: unset;
    width: 100%;
    height: 100%;
}

p,
ul,
li,
h1,
h2,
h3,
h4 {
    margin: 0;
}

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

li {
    text-align: left;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

button {
    padding: 0;
    margin: 0;
    border: inherit;
    box-shadow: inherit;
}

img {
    display: block;
    width: 100%;
}

/*画像をオリジナルサイズで*/
img.original {
    width: initial;
}

video {
    width: 100%;
    height: auto;
}

/*リストのパターン集*/
ul.omj-awre-list-normal {
    list-style: disc;
    padding-left: 1em;
}

ul.omj-awre-num {
    list-style: decimal;
    padding-left: 1em;
}

.omj-awre-bold {
    font-weight: bold;
}

/*************よく使うもの*************/

/*レイアウト関係*/
.wrapper {
    position: relative;
}

.inner {
    position: relative;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .inner {
        padding: 0 7%;
    }
}

.omj-awre-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.omj-awre-vh,
.omj-awre-section.omj-awre-vh {
    padding-top: 100vh;
    position: relative;
    height: 0 !important;
    overflow: hidden;
}

.omj-awre-vh-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {

    .omj-awre-vh,
    .omj-awre-section.omj-awre-vh {
        padding-top: 57%;
    }
}

/* 文章を非表示 */
.omj-awre-clear-text {
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

/*absoluteで真ん中に止めるやつ*/
.omj-awre-abcen {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/*タップさせない*/
.omj-awre-no-select .omj-awre-no-select * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
    -moz-user-select: none !important;
    -khtml-user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    pointer-events: none !important;
}

/*************パーツ類*************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 350;
}

/*ポップアップメニュー*/
.omj-awre-popup-nav {
    text-align: center;
    position: fixed;
    z-index: 300;
    min-height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    opacity: 0;
    display: none;
    transition: 0.5s;
    height: 100vh;
    overflow-y: scroll;
    transform: translateZ(0);
}

.omj-awre-popup-nav.omj-awre-show,
.omj-awre-popup-nav.omj-awre-true {
    display: inherit;
    opacity: 1;
}

.omj-awre-img {
    position: relative;
    overflow: hidden;
}

.omj-awre-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*GoogleMap*/
.omj-awre-google-map iframe {
    width: 100%;
    margin: 0;
    height: 100%;
}

/*フォーム関連*/

label,
input {
    display: block;
    width: 100%;
}

label,
input,
textarea {
    display: block;
    width: 100%;
}

label {
    font-weight: bold;
    margin: 0 0 10px;
}

textarea {
    height: 15em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    border: 1px solid #eee;
    box-shadow: unset;
    background: none;
    font-weight: inherit;
    margin: 0 0 20px;
    padding: 1em;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
    width: 10px;
}

label {
    font-weight: bold;
    margin: 0 15px 10px 0px;
    display: inline-block;
    width: auto;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    font-size: 1.5rem;
    font-size: var(--p-font-size);
}

/*レスポンシブの表示非表示*/
@media screen and (max-width: 1023px) {
    .pc {
        display: none !important;
    }
    
    .tbpc {
        display: none !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .mb {
        display: none !important;
    }

    .pc {
        display: none !important;
    }
}

@media screen and (min-width: 1280px) {
    .mb {
        display: none !important;
    }

    .mbtb {
        display: none !important;
    }
}

/*************フォント系*************/

.omj-awre-text-center {
    text-align: center;
}

.omj-awre-text-right {
    text-align: right;
}

.omj-awre-text-left {
    text-align: left;
}

.omj-awre-text-center-m {
    text-align: center;
}

.omj-awre-text-right-m {
    text-align: right;
}

.omj-awre-text-left-m {
    text-align: left;
}

.omj-awre-text-no-under,
.omj-awre-text-no-under a {
    text-decoration: none !important;
}

.block__flex{
    display: flex;
    gap: 3em;
}

.block__flex--jcc{
    justify-content: center;
}
.block__column .omj-awre-button-1{
    width: auto;
    padding-left: 2em;
    padding-right: 2em;
}

@media screen and (min-width: 768px) {

    .omj-awre-text-center-m,
    .omj-awre-text-right-m,
    .omj-awre-text-left-m {
        text-align: inherit;
    }

    .omj-awre-text-center-tbpc {
        text-align: center;
    }

    .omj-awre-text-left-tbpc {
        text-align: left;
    }

    .omj-awre-text-right-tbpc {
        text-align: right;
    }
}

@media screen and (max-width: 768px) {
    .block__flex{
        flex-direction: column;
    }
    .block__column .omj-awre-button-1{
        line-height: 1.2;
    }
}