/*======= common style =======*/
@charset "utf-8";

/* import font */

/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-weight: 400;
    color: #000000;
    overflow-x: hidden;
    font-size: 15px;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

@media only screen and (max-width: 360px) {
    body {
        min-width: 320px;
    }
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    max-width: 1260px;
    padding: 0 20px;
    margin: 0 auto;
    transition: 0.2s;
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    section.section {
        padding: 60px 0 !important;
    }
}

.cl-white {
    color: #ffffff;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

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

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

/* =====start - header===== */
header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    padding-left: 16px;
    padding-bottom: 8px;
}

.header__logo h1 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__logo h1 span {
    font-size: 24px;
    font-weight: 600;
    color: #231815;
    padding-top: 10px;
    white-space: nowrap;
}

.header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 120px;
    padding-right: 80px;
}

.main__menu {
    gap: 10px;
}

.main__menu li a {
    display: block;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: 600;
    color: #38302e;
    border-radius: 30px;
    transition: 0.2s;
}

.main__menu li a:hover {
    background-color: #eb6100;
    color: #fff;
    opacity: 1;
}
/* =====end - header===== */


/* =========start - footer========= */
.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 0px;
}

.footer__logo img {
    max-width: 208px;
}

.footer__logo  h3 {
    font-size: 24px;
    margin: 20px 0px;
    font-weight: 500;
}

.footer__logo p {
    font-size: 14px;
    margin-bottom: 2px;
}

.footer__img {
    padding-top: 20px;
}

.footer__img img {
    max-width: 140px;
}

/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #eb6100;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 40%);
    border-radius: 50%;
}

#back-to-top svg {
    fill: white;
    width: 32px;
    height: 32px;
}

#back-to-top img {
    margin-bottom: 5px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */

.pc_none {
    display: none !important;
}

.pc {
	display: block;
}

